diff --git a/.gitignore b/.gitignore index 7a3b6cb..28f2f14 100644 --- a/.gitignore +++ b/.gitignore @@ -149,3 +149,4 @@ RaceManagerOld/** Releases/** RaceManager/index/data.json RaceManager/lcsc.pfx +OSL-Server/Configuration/webApiRiot.json diff --git a/OSL-Client/CloseEvent.cs b/OSL-Client/CloseEvent.cs index 7e7d1b7..9859a90 100644 --- a/OSL-Client/CloseEvent.cs +++ b/OSL-Client/CloseEvent.cs @@ -7,6 +7,9 @@ namespace OSL_Client { + /// + /// + /// internal class CloseEvent { [DllImport("Kernel32")] diff --git a/OSL-Client/Communication/OSLServer/Client.cs b/OSL-Client/Communication/OSLServer/Client.cs index 5df8751..ce2efd5 100644 --- a/OSL-Client/Communication/OSLServer/Client.cs +++ b/OSL-Client/Communication/OSLServer/Client.cs @@ -35,6 +35,7 @@ public partial class AsyncClient // The port number for the remote device. //private const int port = 11000; + public static Socket oslServerSocket = null; // ManualResetEvent instances signal completion. private static ManualResetEvent connectDone = @@ -47,67 +48,196 @@ public partial class AsyncClient // The response from the remote device. private static String response = String.Empty; + + /// - /// Run connexion for connect to server + /// /// - /// data recive - /// Connexion are enabled + /// + /// public static bool StartClient(String data) { - // Connect to a remote device. try { - // Establish the remote endpoint for the socket. - // The name of the - // remote device is "host.contoso.com". - IPHostEntry ipHostInfo = Dns.Resolve(Config.serverIPSocketOSLServer); - IPAddress ipAddress = ipHostInfo.AddressList[0]; - foreach (IPAddress address in ipHostInfo.AddressList){ - if (address.AddressFamily.ToString() == ProtocolFamily.InterNetworkV6.ToString()) - { + Socket client = null; + IPEndPoint ipe = null; - } - else if (address.AddressFamily.ToString() == ProtocolFamily.InterNetwork.ToString()) + IPHostEntry hostEntry = Dns.GetHostEntry(Config.serverIPSocketOSLServer); + + foreach (IPAddress address in hostEntry.AddressList) + { + Console.WriteLine(address); + if (address.AddressFamily.ToString() == ProtocolFamily.InterNetwork.ToString()) { - ipAddress = address; + ipe = new IPEndPoint(address, Config.serverPortSocketOSLServer); + Socket tempSocket = + new Socket(ipe.AddressFamily, SocketType.Stream, ProtocolType.Tcp); + try + { + tempSocket.Connect(ipe); + + if (tempSocket.Connected) + { + client = tempSocket; + _logger.log(LoggingLevel.INFO, "StartClient()", "Socket connected"); + break; + } + else + { + continue; + } + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "StartClient()", "Error tempSocket.Connect(ipe) : " + e.Message); + } } } - _logger.log(LoggingLevel.INFO, "StartClient()", "ipAddress : " + ipAddress); - - IPEndPoint remoteEP = new IPEndPoint(ipAddress, Config.serverPortSocketOSLServer); - - // Create a TCP/IP socket. - Socket client = new Socket(ipAddress.AddressFamily, - SocketType.Stream, ProtocolType.Tcp); - - // Connect to the remote endpoint. - client.BeginConnect(remoteEP, - new AsyncCallback(ConnectCallback), client); - //Console.WriteLine(client.Connected); - connectDone.WaitOne(); - - //_logger.log(LoggingLevel.INFO, "StartClient()", "Data : " + data); Send(client, data); - //Send(client, "This is a test"); sendDone.WaitOne(); // Receive the response from the remote device. - Receive(client); - receiveDone.WaitOne(); + //Receive(client); + //receiveDone.WaitOne(); - _logger.log(LoggingLevel.INFO, "StartClient()", "Response received : " + response); + oslServerSocket = client; - // Release the socket. - client.Shutdown(SocketShutdown.Both); - client.Close(); + return true; } catch (Exception e) { _logger.log(LoggingLevel.ERROR, "StartClient()", "Error Client : " + e.Message); return false; } - return true; + } + + /// + /// + /// + /// + public static bool CloseClient() + { + try + { + oslServerSocket.Shutdown(SocketShutdown.Both); + oslServerSocket.Close(); + return true; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "CloseClient()", "Error Client : " + e.Message); + return false; + } } } + + + + + + + + + + + + + + + + /// + /// Run connexion for connect to server + /// + /// data recive + /// Connexion are enabled + //public static bool StartClient(String data) + //{ + // // Connect to a remote device. + // try + // { + // // Establish the remote endpoint for the socket. + // // The name of the + // // remote device is "host.contoso.com". + // //IPHostEntry ipHostInfo = Dns.Resolve(Config.serverIPSocketOSLServer); + // //IPAddress ipAddress = ipHostInfo.AddressList[0]; + // //foreach (IPAddress address in ipHostInfo.AddressList){ + // // Console.WriteLine(address); + // // if (address.AddressFamily.ToString() == ProtocolFamily.InterNetworkV6.ToString()) + // // { + + // // } + // // else if (address.AddressFamily.ToString() == ProtocolFamily.InterNetwork.ToString()) + // // { + // // ipAddress = address; + // // } + // //} + + // Socket client = null; + // IPEndPoint ipe = null; + + // IPHostEntry hostEntry = Dns.GetHostEntry(Config.serverIPSocketOSLServer); + + // foreach (IPAddress address in hostEntry.AddressList) + // { + // Console.WriteLine(address); + // ipe = new IPEndPoint(address, Config.serverPortSocketOSLServer); + // Socket tempSocket = + // new Socket(ipe.AddressFamily, SocketType.Stream, ProtocolType.Tcp); + // try + // { + // tempSocket.Connect(ipe); + + // if (tempSocket.Connected) + // { + // client = new Socket(ipe.AddressFamily, SocketType.Stream, ProtocolType.Tcp); + // break; + // } + // else + // { + // continue; + // } + // } + // catch (Exception e) + // { + // _logger.log(LoggingLevel.ERROR, "StartClient()", "Error tempSocket.Connect(ipe) : " + e.Message); + // } + // } + + // //_logger.log(LoggingLevel.INFO, "StartClient()", "ipAddress : " + ipAddress); + + // //IPEndPoint remoteEP = new IPEndPoint(ipAddress, Config.serverPortSocketOSLServer); + + // // Create a TCP/IP socket. + // //client = new Socket(ipAddress.AddressFamily, + // // SocketType.Stream, ProtocolType.Tcp); + + // // Connect to the remote endpoint. + // client.BeginConnect(ipe, new AsyncCallback(ConnectCallback), client); + // //Console.WriteLine(client.Connected); + // connectDone.WaitOne(); + + // //_logger.log(LoggingLevel.INFO, "StartClient()", "Data : " + data); + // Send(client, data); + // //Send(client, "This is a test"); + // sendDone.WaitOne(); + + // // Receive the response from the remote device. + // Receive(client); + // receiveDone.WaitOne(); + + // _logger.log(LoggingLevel.INFO, "StartClient()", "Response received : " + response); + + // // Release the socket. + // //client.Shutdown(SocketShutdown.Both); + // //client.Close(); + // } + // catch (Exception e) + // { + // _logger.log(LoggingLevel.ERROR, "StartClient()", "Error Client : " + e.Message); + // return false; + // } + // return true; + //} + //} } diff --git a/OSL-Client/Communication/OSLServer/Recive.cs b/OSL-Client/Communication/OSLServer/Recive.cs index 9287131..3c6e380 100644 --- a/OSL-Client/Communication/OSLServer/Recive.cs +++ b/OSL-Client/Communication/OSLServer/Recive.cs @@ -16,7 +16,7 @@ public partial class AsyncClient /// Receive /// /// Socket client - private static void Receive(Socket client) + public static void Receive(Socket client) { try { @@ -34,6 +34,24 @@ private static void Receive(Socket client) } } + public static void Receive() + { + try + { + // Create the state object. + StateObject state = new StateObject(); + state.workSocket = oslServerSocket; + + // Begin receiving the data from the remote device. + oslServerSocket.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, + new AsyncCallback(ReceiveCallback), state); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "Receive()", "Error Client Recive : " + e.Message); + } + } + /// /// ReceiveCallback /// diff --git a/OSL-Client/Communication/OSLServer/Send.cs b/OSL-Client/Communication/OSLServer/Send.cs index 318a620..adf96a9 100644 --- a/OSL-Client/Communication/OSLServer/Send.cs +++ b/OSL-Client/Communication/OSLServer/Send.cs @@ -17,7 +17,7 @@ public partial class AsyncClient /// /// Socket client /// data to send - private static void Send(Socket client, String data) + public static void Send(Socket client, String data) { // Convert the string data to byte data using ASCII encoding. byte[] byteData = Encoding.UTF8.GetBytes(data); @@ -27,6 +27,16 @@ private static void Send(Socket client, String data) new AsyncCallback(SendCallback), client); } + public static void Send(String data) + { + // Convert the string data to byte data using ASCII encoding. + byte[] byteData = Encoding.UTF8.GetBytes(data); + + // Begin sending the data to the remote device. + oslServerSocket.BeginSend(byteData, 0, byteData.Length, 0, + new AsyncCallback(SendCallback), oslServerSocket); + } + /// /// SendCallback /// diff --git a/OSL-Client/Configuration/configServerSocketOSLServer.json b/OSL-Client/Configuration/configServerSocketOSLServer.json index 30cdfa8..41c5c56 100644 --- a/OSL-Client/Configuration/configServerSocketOSLServer.json +++ b/OSL-Client/Configuration/configServerSocketOSLServer.json @@ -1,4 +1,4 @@ { - "ipOSLServer": "localhost", + "ipOSLServer": "192.168.1.5", "portOSLServer": 45678 } \ No newline at end of file diff --git a/OSL-Client/OSL-Client.csproj b/OSL-Client/OSL-Client.csproj index f94abda..c5e35fb 100644 --- a/OSL-Client/OSL-Client.csproj +++ b/OSL-Client/OSL-Client.csproj @@ -10,9 +10,9 @@ Icone_Terre.ico Sky-csc https://github.com/Sky-CSC/OSL - 0.1.0 - 0.1.0 - 0.1.0-alpha + 1.0.0 + 1.0.0 + 1.0.0 diff --git a/OSL-Client/Program.cs b/OSL-Client/Program.cs index 63a76bc..fe392a2 100644 --- a/OSL-Client/Program.cs +++ b/OSL-Client/Program.cs @@ -9,6 +9,7 @@ //using OSL_Client.RiotApp.MemoryProcessing; using OSL_Client.Communication.OSLServer; using System.Net; +using OSL_Client.RiotApp.MemoryProcessing; Console.WriteLine(""); OSLLogger logger = new("Program"); @@ -21,7 +22,7 @@ Console.WriteLine("###########################################\n"); Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("###########################"); -Console.WriteLine("##### Version 0.1.0 #####"); +Console.WriteLine("###### Version 1.0.0 ######"); Console.WriteLine("###########################\n"); Console.ResetColor(); @@ -30,6 +31,7 @@ String data = "Hello OSL-Server is OSL-Client managed by Sky"; AsyncClient.StartClient(data); +Thread.Sleep(1000); //while (!AsyncClient.StartClient(data)) //{ @@ -55,4 +57,6 @@ } } } -} \ No newline at end of file +} + +//TestClass.Test(); \ No newline at end of file diff --git a/OSL-Client/RiotApp/API/LCU/LcuApi.cs b/OSL-Client/RiotApp/API/LCU/LcuApi.cs index 80b6660..be6c91a 100644 --- a/OSL-Client/RiotApp/API/LCU/LcuApi.cs +++ b/OSL-Client/RiotApp/API/LCU/LcuApi.cs @@ -36,7 +36,7 @@ public static void GameFlowPhaseCheck(string gameFlowPhase) { _logger.log(LoggingLevel.INFO, "GameFlowPhaseCheck()", "Game found"); //If the game is finish and we want to watch it, no champ select display but, champ pick and ban display - //InGameProcess.InGame(); + InGameProcess.InGame(); } else { @@ -81,7 +81,7 @@ public static void GameFlowPhaseCheck(string gameFlowPhase) else if (gameFlowPhase.Equals(InProgress)) { _logger.log(LoggingLevel.INFO, "GameFlowPhaseCheck()", $"GameFlowPhase is {InProgress}"); - //InGameProcess.InGame(); + InGameProcess.InGame(); } else if (gameFlowPhase.Equals(Reconnect)) @@ -99,6 +99,7 @@ public static void GameFlowPhaseCheck(string gameFlowPhase) else if (gameFlowPhase.Equals(EndOfGame)) { _logger.log(LoggingLevel.INFO, "GameFlowPhaseCheck()", $"GameFlowPhase is {EndOfGame}"); + EndGameProcess.InEndGame(); } else if (gameFlowPhase.Equals(TerminatedInError)) { @@ -132,7 +133,6 @@ public class UrlRequest public static readonly string lolgameflowv1gameflowphase = "/lol-gameflow/v1/gameflow-phase"; // public static readonly string lolsummonerv1summoners = "/lol-summoner/v1/summoners/"; // - //lol-champ-select public static readonly string lolchampselectv1gridchampions = "/lol-champ-select/v1/grid-champions/"; // public static readonly string lolchampselectv1session = "/lol-champ-select/v1/session"; // diff --git a/OSL-Client/RiotApp/DataProcessing/ChampSelectProcess.cs b/OSL-Client/RiotApp/DataProcessing/ChampSelectProcess.cs index 7b3d993..e66b442 100644 --- a/OSL-Client/RiotApp/DataProcessing/ChampSelectProcess.cs +++ b/OSL-Client/RiotApp/DataProcessing/ChampSelectProcess.cs @@ -17,7 +17,7 @@ namespace OSL_Client.RiotApp.DataProcessing /// internal class ChampSelectProcess { - private static OSLLogger _logger = new OSLLogger("ChampionSelect"); + private static OSLLogger _logger = new OSLLogger("ChampSelectProcess"); /// /// Recovery of information on the champion selection dans send it to the API /// @@ -38,14 +38,16 @@ public static void InChampSelect() Date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") }; string InChampSelectStartSend = JsonConvert.SerializeObject(champSelectStart); //send to server information - AsyncClient.StartClient(InChampSelectStartSend); + //AsyncClient.StartClient(InChampSelectStartSend); + AsyncClient.Send(InChampSelectStartSend); //All information necessary for display pick and ban overlay string champSelectContentPrevious = ""; string champSelectContent; int i = 0; - while ((champSelectContent = ApiRequest.RequestGameClientAPI(UrlRequest.lolchampselectv1session)) != null) + while ((champSelectContent = ApiRequest.RequestGameClientAPI(UrlRequest.lolchampselectv1session)) != null && ApiRequest.RequestGameClientAPI(UrlRequest.lolgameflowv1gameflowphase).Equals(GameFlowPhase.ChampSelect)) { + _logger.log(LoggingLevel.INFO, "InChampSelect()", $"In champ select"); //_logger.log(LoggingLevel.INFO, "ManageChampionSelect()", $"ChampSelectContent is {champSelectContent}"); if (!champSelectContent.Equals(champSelectContentPrevious)) { @@ -102,17 +104,18 @@ public static void InChampSelect() } FileManagerLocal.RewrittenFile($"E:/Overlay-found-riot/ChampSelectAll/champSelectAll{i}.json", champSelectContent); - _logger.log(LoggingLevel.INFO, "ManageChampionSelect()", "Send ChampSelectContent"); + _logger.log(LoggingLevel.INFO, "InChampSelect()", "Send ChampSelectContent"); i++; //Send to Server ChampSelectContent - AsyncClient.StartClient(champSelectContent); + //AsyncClient.StartClient(champSelectContent); + AsyncClient.Send(champSelectContent); } else { - _logger.log(LoggingLevel.WARN, "ManageChampionSelect()", "No modification of ChampSelectContent"); + _logger.log(LoggingLevel.WARN, "InChampSelect()", "No modification of ChampSelectContent"); } Thread.Sleep(1000); } @@ -125,8 +128,9 @@ public static void InChampSelect() Date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") }; string InChampSelectEndSend = JsonConvert.SerializeObject(champSelectEnd); //send to server information - AsyncClient.StartClient(InChampSelectEndSend); - _logger.log(LoggingLevel.WARN, "ManageChampionSelect()", "End of ChampSelect"); + //AsyncClient.StartClient(InChampSelectEndSend); + AsyncClient.Send(InChampSelectEndSend); + _logger.log(LoggingLevel.WARN, "InChampSelect()", "End of ChampSelect"); } /// diff --git a/OSL-Client/RiotApp/DataProcessing/EndGameProcess.cs b/OSL-Client/RiotApp/DataProcessing/EndGameProcess.cs index fe013e4..266e9a2 100644 --- a/OSL-Client/RiotApp/DataProcessing/EndGameProcess.cs +++ b/OSL-Client/RiotApp/DataProcessing/EndGameProcess.cs @@ -1,4 +1,8 @@ -using System; +using Newtonsoft.Json; +using OSL_Client.Communication.OSLServer; +using OSL_Client.RiotApp.API; +using OSL_Client.RiotApp.API.LCU; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -11,12 +15,43 @@ namespace OSL_Client.RiotApp.DataProcessing /// internal class EndGameProcess { + private static OSLLogger _logger = new OSLLogger("EndGameProcess"); /// /// Send to socket server data recive from riot client from end game /// public static void InEndGame() { - + var inGameStart = new GameFlowPhaseStatus + { + //IdGame = NewGameProcess.IdGame, + Phase = "EndGame", + Status = "Running", + Date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + }; + string inGameStartSend = JsonConvert.SerializeObject(inGameStart); //send to server information + //AsyncClient.StartClient(inGameStartSend); + AsyncClient.Send(inGameStartSend); + + string sessionInfo = ApiRequest.RequestGameClientAPI("/lol-end-of-game/v1/eog-stats-block"); + //AsyncClient.StartClient(sessionInfo); + AsyncClient.Send(sessionInfo); + + while (sessionInfo != null && ApiRequest.RequestGameClientAPI(UrlRequest.lolgameflowv1gameflowphase).Equals(GameFlowPhase.EndOfGame)) + { + _logger.log(LoggingLevel.INFO, "InEndGame()", "In end game"); + Thread.Sleep(5000); + } + + var inGameEnd = new GameFlowPhaseStatus + { + //IdGame = NewGameProcess.IdGame, + Phase = "EndGame", + Status = "End", + Date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + }; + string inGameEndSend = JsonConvert.SerializeObject(inGameEnd); //send to server information + //AsyncClient.StartClient(inGameEndSend); + AsyncClient.Send(inGameEndSend); } } } diff --git a/OSL-Client/RiotApp/DataProcessing/InGameProcess.cs b/OSL-Client/RiotApp/DataProcessing/InGameProcess.cs index be55613..552c954 100644 --- a/OSL-Client/RiotApp/DataProcessing/InGameProcess.cs +++ b/OSL-Client/RiotApp/DataProcessing/InGameProcess.cs @@ -6,6 +6,10 @@ using System.Threading.Tasks; using OSL_Client.Configuration; using OSL_Client.FileManager; +using OSL_Client.RiotApp.API.LCU; +using OSL_Client.RiotApp.API; +using OSL_Client.Communication.OSLServer; +using Newtonsoft.Json; namespace OSL_Client.RiotApp.DataProcessing { @@ -21,25 +25,77 @@ internal class InGameProcess /// public static void InGame() { + var inGameStart = new GameFlowPhaseStatus + { + //IdGame = NewGameProcess.IdGame, + Phase = "InGame", + Status = "Running", + Date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + }; + string inGameStartSend = JsonConvert.SerializeObject(inGameStart); //send to server information + //AsyncClient.StartClient(inGameStartSend); + AsyncClient.Send(inGameStartSend); + ConnectLiveEventsAPI(); - while (true) + + //string playerList = ApiRequest.RequestGameClientReplayAPI("/liveclientdata/playerlist"); + string sessionInfo = ApiRequest.RequestGameClientAPI("/lol-gameflow/v1/session"); + //AsyncClient.StartClient(sessionInfo); + AsyncClient.Send(sessionInfo); + //if (sessionInfo != null) + //{ + // AsyncClient.StartClient(sessionInfo); + //} + //else + //{ + // string sessionInfo = ApiRequest.RequestGameClientAPI("/lol-gameflow/v1/session"); + //} + //Send information from game to serveur + string gameFlowPhase; + gameFlowPhase = ApiRequest.RequestGameClientAPI(UrlRequest.lolgameflowv1gameflowphase); + + while (gameFlowPhase != null && ApiRequest.RequestGameClientAPI(UrlRequest.lolgameflowv1gameflowphase).Equals(GameFlowPhase.InProgress)) { - //if (ConnectLiveEventsAPI()) - //{ - - //time stamp - string date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); - //Console.WriteLine(); - string content = GetLiveEventsAPI(); - if (content != null) { - //write in file - //FileManagerLocal.WriteInFile(@"E:\Overlay-found-riot\info.json", date); - FileManagerLocal.WriteInFile(@"E:\Overlay-found-riot\info.json", date + "\n" + content); - } - //DisconnectLiveEventsAPI(); - //} + _logger.log(LoggingLevel.INFO, "InGame()", "In game"); + Thread.Sleep(5000); } + //while (gameFlowPhase != null && gameFlowPhase.Equals(GameFlowPhase.InProgress)) + //{ + // Thread.Sleep(5000); + // //if (ConnectLiveEventsAPI()) + // //{ + // //time stamp + // //string date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); + // //Console.WriteLine(); + // //string content = GetLiveEventsAPI(); + // //if (content != null) { + // // //write in file + // // //FileManagerLocal.WriteInFile(@"E:\Overlay-found-riot\info.json", date); + // // FileManagerLocal.WriteInFile(@"E:\Overlay-found-riot\info.json", date + "\n" + content); + // //} + // //DisconnectLiveEventsAPI(); + // //} + + // //if (content != null) + // //{ + + // //} + + // gameFlowPhase = ApiRequest.RequestGameClientAPI(UrlRequest.lolgameflowv1gameflowphase); + //} + //Thread.Sleep(5000); + + var inGameEnd = new GameFlowPhaseStatus + { + //IdGame = NewGameProcess.IdGame, + Phase = "InGame", + Status = "End", + Date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + }; + string inGameEndSend = JsonConvert.SerializeObject(inGameEnd); //send to server information + //AsyncClient.StartClient(inGameEndSend); + AsyncClient.Send(inGameEndSend); //Init all fonction of this game @@ -121,18 +177,18 @@ public static string GetLiveEventsAPI() { socketLiveEventsAPI.Receive(bytes, 0, size, SocketFlags.None); string content = Encoding.UTF8.GetString(bytes); - _logger.log(LoggingLevel.INFO, "GetLiveEventsAPI()", "Receive from LiveEventsAPI successfull : "/* + content*/); + _logger.log(LoggingLevel.INFO, "GetLiveEventsAPI()", "Receive from LiveEventsAPI successfull : " + content); return content; } else { - _logger.log(LoggingLevel.WARN, "GetLiveEventsAPI()", "Receive from LiveEventsAPI null"); + //_logger.log(LoggingLevel.WARN, "GetLiveEventsAPI()", "Receive from LiveEventsAPI null"); return null; } } else { - _logger.log(LoggingLevel.ERROR, "GetLiveEventsAPI()", "Receive from LiveEventsAPI not Available"); + //_logger.log(LoggingLevel.ERROR, "GetLiveEventsAPI()", "Receive from LiveEventsAPI not Available"); //DisconnectLiveEventsAPI(); return null; } @@ -140,7 +196,7 @@ public static string GetLiveEventsAPI() catch (Exception e) { //DisconnectLiveEventsAPI(); - _logger.log(LoggingLevel.ERROR, "GetLiveEventsAPI()", "GetLiveEventsAPI failed : " + e.Message); + //_logger.log(LoggingLevel.ERROR, "GetLiveEventsAPI()", "GetLiveEventsAPI failed : " + e.Message); return null; } } diff --git a/OSL-Server/Communication/AsyncServer/Listening.cs b/OSL-Server/Communication/AsyncServer/Listening.cs index f8e9194..22cc721 100644 --- a/OSL-Server/Communication/AsyncServer/Listening.cs +++ b/OSL-Server/Communication/AsyncServer/Listening.cs @@ -1,5 +1,7 @@ using System.Net.Sockets; using System.Net; +using OSL_Server.DataReciveClient; +using System.Text; namespace OSL_Server.Communication { @@ -26,6 +28,9 @@ private static void StartListening() Socket listener = new Socket(AddressFamily.InterNetworkV6, SocketType.Stream, ProtocolType.Tcp); listener.SetSocketOption(SocketOptionLevel.IPv6, SocketOptionName.IPv6Only, false); + //Socket listener = new Socket(AddressFamily.InterNetwork, + //SocketType.Stream, ProtocolType.Tcp); + //listener.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.IPOptions, false); // Bind the socket to the local endpoint and listen for incoming connections. try { @@ -51,7 +56,7 @@ private static void StartListening() listener.BeginAccept( new AsyncCallback(AcceptCallback), listener); - + if (_stop) throw new ThreadInterruptedException(); // Wait until a connection is made before continuing. allDone.WaitOne(); @@ -62,7 +67,7 @@ private static void StartListening() { _logger.log(LoggingLevel.WARN, "StartListening()", $"Server interrupted {e.Message}"); ServerHub.IsServerRunning = false; - return; + break; } } catch (Exception e) @@ -98,9 +103,32 @@ private static void AcceptCallback(IAsyncResult ar) Client client = new Client(); client.Handler = handler; - handler.BeginReceive(client.buffer, 0, Client.BufferSize, 0, - new AsyncCallback(ReadCallback), client); - //Socket never close, system wait interruption kernel to close it + while (true) + { + int bytesRead = handler.Receive(client.buffer); + //while if dig data + String content = String.Empty; + // Serialisation + if (bytesRead > 0) + { + // There might be more data, so store the data received so far. + //client.sb.Append(Encoding.UTF8.GetString( + // client.buffer, 0, bytesRead)); + + // Check for end-of-file tag. If it is not there, read + // more data. + //content = client.sb.ToString(); + content = Encoding.UTF8.GetString(client.buffer, 0, bytesRead); + //_logger.log(LoggingLevel.INFO, "ReadCallback()", $"Content recived {content}"); + + string returnContent = ReciveFromClient.ReadData(content); + + //Send(handler, returnContent); + } + //handler.BeginReceive(client.buffer, 0, Client.BufferSize, 0, + // ReadCallback, client); + //Socket never close, system wait interruption kernel to close it + } } catch (Exception e) { diff --git a/OSL-Server/Communication/AsyncServer/Read.cs b/OSL-Server/Communication/AsyncServer/Read.cs index 06d098e..b05e53e 100644 --- a/OSL-Server/Communication/AsyncServer/Read.cs +++ b/OSL-Server/Communication/AsyncServer/Read.cs @@ -40,7 +40,7 @@ private static void ReadCallback(IAsyncResult ar) string returnContent = ReciveFromClient.ReadData(content); - Send(handler, returnContent); + //Send(handler, returnContent); } } } diff --git a/OSL-Server/Configuration/Config.cs b/OSL-Server/Configuration/Config.cs index 45603a5..17ba98d 100644 --- a/OSL-Server/Configuration/Config.cs +++ b/OSL-Server/Configuration/Config.cs @@ -1,10 +1,17 @@ using Newtonsoft.Json; using OSL_Server.FileManager; using OSL_Server.DataLoader.CDragon; -using OSL_Server.Pages; using OSL_Server.Communication; using OSL_Server.DataReciveClient.Processing.ChampSelect; using System.Net; +using OSL_Server.Pages; +using OSL_Server.Pages.ChampSelect; +using OSL_Server.Pages.InGame; +using Microsoft.AspNetCore.DataProtection.KeyManagement; +using OSL_Server.DataLoader.WebApiRiot; +using OSL_Server.Pages.Runes; +using OSL_Server.Pages.EndGame; +using OSL_Server.DataReciveClient.Processing.EndGame; namespace OSL_Server.Configuration { @@ -35,6 +42,12 @@ public static void LoadConfig() LoadDefaultSession(); + LoadDefaultSessionEndGame(); + + //Load configurations web api key + LoadWebRiotApiKey(); + + //Load configurations champ select LoadFormatingDataConfigChampSelectView1(); LoadConfigChampSelectView1(); LoadFormatingDataConfigChampSelectView2(); @@ -44,12 +57,38 @@ public static void LoadConfig() LoadFormatingDataConfigChampSelectView4(); LoadConfigChampSelectView4(); + //Load configurations in game LoadFormatingDataConfigInGameView1(); LoadConfigInGameView1(); LoadFormatingDataConfigInGameView2(); LoadConfigInGameView2(); LoadFormatingDataConfigInGameView3(); LoadConfigInGameView3(); + + //Load configurations runes + LoadConfigRunesPage(); + LoadFormatingDataConfigRunesTopPage(); + LoadConfigRunesTopPage(); + LoadFormatingDataConfigRunesMidPage(); + LoadConfigRunesMidPage(); + LoadFormatingDataConfigRunesJunglePage(); + LoadConfigRunesJunglePage(); + LoadFormatingDataConfigRunesAdcPage(); + LoadConfigRunesAdcPage(); + LoadFormatingDataConfigRunesSuppPage(); + LoadConfigRunesSuppPage(); + LoadFormatingDataConfigRunesAdcSuppPage(); + LoadConfigRunesAdcSuppPage(); + LoadFormatingDataConfigRunesAllPage(); + LoadConfigRunesAllPage(); + + //Load configurations end game + LoadFormatingDataConfigEndGameView1(); + LoadConfigEndGameView1Page(); + LoadFormatingDataConfigEndGameView2(); + LoadConfigEndGameView2Page(); + LoadFormatingDataConfigEndGameView3(); + LoadConfigEndGameView3Page(); } /// @@ -384,6 +423,19 @@ public static void LoadDefaultSession() ChampSelectInfo.InChampSelect(dataDefaultSession); } + /// + /// Load Default Session for display att start information on end game views + /// + public static void LoadDefaultSessionEndGame() + { + string dataDefaultSessionLocal = FileManagerLocal.ReadInFile("./wwwroot/assets/endgame/loadDefaultData/local-api-eog-stats-block.json"); + string dataDefaultSessionWeb = FileManagerLocal.ReadInFile("./wwwroot/assets/endgame/loadDefaultData/web-api-match-v5.json"); + string dataDefaultSessionWebTimeline = FileManagerLocal.ReadInFile("./wwwroot/assets/endgame/loadDefaultData/web-api-match-v5-timeline.json"); + EndGameInfo.jsonContentEndOfMatch = JsonConvert.DeserializeObject(dataDefaultSessionLocal); + EndGameInfo.jsonContentMatch = JsonConvert.DeserializeObject(dataDefaultSessionWeb); + EndGameInfo.jsonContentTimeline = JsonConvert.DeserializeObject(dataDefaultSessionWebTimeline); + } + public static void LoadConfigInGameView1() { try @@ -518,7 +570,599 @@ public static void LoadFormatingDataConfigInGameView3() InGameView3Page.formatingData.DisplayRedPlayerFrame = jsonContent.DisplayRedPlayerFrame; } + public static void LoadWebRiotApiKey() + { + string content = FileManagerLocal.ReadInFile("./Configuration/webApiRiot.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + WebApiRiot.apiKey = jsonContent.apiKey; + _logger.log(LoggingLevel.INFO, "LoadWebRiotApiKey()", $"Api key loaded"); + } + public static void LoadConfigRunesPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesPage()", $"{RunesPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesPage()", $"{RunesPage.formatingData.DefaultRegion}"); + } + + public static void LoadConfigRunesTopPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesTopPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesTopPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesTopPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesTopPage()", $"{RunesTopPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesTopPage()", $"{RunesTopPage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesTopPage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/Top/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesTopPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesTopPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesTopPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesTopPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesTopPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesTopPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesTopPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesTopPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesTopPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesTopPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesTopPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesTopPage.formatingData.LanePicture = jsonContent.LanePicture; + } + + public static void LoadConfigRunesMidPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesMidPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesMidPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesMidPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesMidPage()", $"{RunesMidPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesMidPage()", $"{RunesMidPage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesMidPage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/Mid/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesMidPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesMidPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesMidPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesMidPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesMidPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesMidPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesMidPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesMidPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesMidPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesMidPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesMidPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesMidPage.formatingData.LanePicture = jsonContent.LanePicture; + } + + public static void LoadConfigRunesJunglePage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesJunglePage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesJunglePage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesJunglePage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesJunglePage()", $"{RunesJunglePage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesJunglePage()", $"{RunesJunglePage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesJunglePage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/Jungle/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesJunglePage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesJunglePage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesJunglePage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesJunglePage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesJunglePage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesJunglePage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesJunglePage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesJunglePage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesJunglePage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesJunglePage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesJunglePage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesJunglePage.formatingData.LanePicture = jsonContent.LanePicture; + } + + public static void LoadConfigRunesAdcPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesAdcPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesAdcPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesAdcPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesAdcPage()", $"{RunesAdcPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesAdcPage()", $"{RunesAdcPage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesAdcPage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/Adc/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesAdcPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesAdcPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesAdcPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesAdcPage.formatingData.BackgroudGradientDeg = jsonContent.BackgroudGradientDeg; + RunesAdcPage.formatingData.BackgroudGradientColor1 = jsonContent.BackgroudGradientColor1; + RunesAdcPage.formatingData.BackgroudGradientPercent1 = jsonContent.BackgroudGradientPercent1; + RunesAdcPage.formatingData.BackgroudGradientColor2 = jsonContent.BackgroudGradientColor2; + RunesAdcPage.formatingData.BackgroudGradientPercent2 = jsonContent.BackgroudGradientPercent2; + RunesAdcPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesAdcPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesAdcPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesAdcPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesAdcPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesAdcPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesAdcPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesAdcPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesAdcPage.formatingData.LanePicture = jsonContent.LanePicture; + } + + public static void LoadConfigRunesSuppPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesSuppPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesSuppPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesSuppPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesSuppPage()", $"{RunesSuppPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesSuppPage()", $"{RunesSuppPage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesSuppPage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/Support/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesSuppPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesSuppPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesSuppPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesSuppPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesSuppPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesSuppPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesSuppPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesSuppPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesSuppPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesSuppPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesSuppPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesSuppPage.formatingData.LanePicture = jsonContent.LanePicture; + } + + public static void LoadConfigRunesAdcSuppPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesAdcSuppPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesAdcSuppPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesAdcSuppPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesAdcSuppPage()", $"{RunesAdcSuppPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesAdcSuppPage()", $"{RunesAdcSuppPage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesAdcSuppPage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/AdcSupp/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesAdcSuppPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesAdcSuppPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesAdcSuppPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesAdcSuppPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesAdcSuppPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesAdcSuppPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesAdcSuppPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesAdcSuppPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesAdcSuppPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesAdcSuppPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesAdcSuppPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesAdcSuppPage.formatingData.LanePictureAdc = jsonContent.LanePictureAdc; + RunesAdcSuppPage.formatingData.LanePictureSupp = jsonContent.LanePictureSupp; + } + + public static void LoadConfigRunesAllPage() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + RunesAllPage.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + RunesAllPage.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + RunesAllPage.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigRunesAllPage()", $"{RunesAllPage.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigRunesAllPage()", $"{RunesAllPage.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigRunesAllPage() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/Runes/All/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesAllPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesAllPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesAllPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesAllPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesAllPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesAllPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesAllPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesAllPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesAllPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesAllPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesAllPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesAllPage.formatingData.LanePictureAdc = jsonContent.LanePictureAdc; + RunesAllPage.formatingData.LanePictureSupp = jsonContent.LanePictureSupp; + RunesAllPage.formatingData.LanePictureTop = jsonContent.LanePictureTop; + RunesAllPage.formatingData.LanePictureMid = jsonContent.LanePictureMid; + RunesAllPage.formatingData.LanePictureJungle = jsonContent.LanePictureJungle; + } + + public static void LoadConfigEndGameView1Page() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + EndGameView1Page.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + EndGameView1Page.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + EndGameView1Page.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigEndGameView1Page()", $"{EndGameView1Page.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigEndGameView1Page()", $"{EndGameView1Page.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigEndGameView1() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/EndGame/View1/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //EndGameView1Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //EndGameView1Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView1Page.formatingData.BackgroundColor = jsonContent.BackgroundColor; + EndGameView1Page.formatingData.BackgroundColorDeg = jsonContent.BackgroundColorDeg; + EndGameView1Page.formatingData.BackgroundColorColor1 = jsonContent.BackgroundColorColor1; + EndGameView1Page.formatingData.BackgroundColorPercent1 = jsonContent.BackgroundColorPercent1; + EndGameView1Page.formatingData.BackgroundColorColor2 = jsonContent.BackgroundColorColor2; + EndGameView1Page.formatingData.BackgroundColorPercent2 = jsonContent.BackgroundColorPercent2; + EndGameView1Page.formatingData.TopBarBackgroundColor = jsonContent.TopBarBackgroundColor; + EndGameView1Page.formatingData.TopBarBackgroundColorDeg = jsonContent.TopBarBackgroundColorDeg; + EndGameView1Page.formatingData.TopBarBackgroundColorColor1 = jsonContent.TopBarBackgroundColorColor1; + EndGameView1Page.formatingData.TopBarBackgroundColorPercent1 = jsonContent.TopBarBackgroundColorPercent1; + EndGameView1Page.formatingData.TopBarBackgroundColorColor2 = jsonContent.TopBarBackgroundColorColor2; + EndGameView1Page.formatingData.TopBarBackgroundColorPercent2 = jsonContent.TopBarBackgroundColorPercent2; + EndGameView1Page.formatingData.TopBarGradiant = jsonContent.TopBarGradiant; + EndGameView1Page.formatingData.TopBarBorderColor = jsonContent.TopBarBorderColor; + EndGameView1Page.formatingData.TopBarTimerText = jsonContent.TopBarTimerText; + EndGameView1Page.formatingData.TopBarTimerTextColor = jsonContent.TopBarTimerTextColor; + EndGameView1Page.formatingData.TopBarTimerColor = jsonContent.TopBarTimerColor; + EndGameView1Page.formatingData.TopBarBlueTeamName = jsonContent.TopBarBlueTeamName; + EndGameView1Page.formatingData.TopBarBlueTeamScore = jsonContent.TopBarBlueTeamScore; + EndGameView1Page.formatingData.TopBarBlueTeamNameColor = jsonContent.TopBarBlueTeamNameColor; + EndGameView1Page.formatingData.TopBarBlueTeamScoreColor = jsonContent.TopBarBlueTeamScoreColor; + EndGameView1Page.formatingData.TopBarBlueTeamWinLossColor = jsonContent.TopBarBlueTeamWinLossColor; + EndGameView1Page.formatingData.TopBarRedTeamName = jsonContent.TopBarRedTeamName; + EndGameView1Page.formatingData.TopBarRedTeamScore = jsonContent.TopBarRedTeamScore; + EndGameView1Page.formatingData.TopBarRedTeamNameColor = jsonContent.TopBarRedTeamNameColor; + EndGameView1Page.formatingData.TopBarRedTeamScoreColor = jsonContent.TopBarRedTeamScoreColor; + EndGameView1Page.formatingData.TopBarRedTeamWinLossColor = jsonContent.TopBarRedTeamWinLossColor; + EndGameView1Page.formatingData.ChampionInfoBackgroundColor = jsonContent.ChampionInfoBackgroundColor; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg = jsonContent.ChampionInfoBackgroundColorDeg; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1 = jsonContent.ChampionInfoBackgroundColorColor1; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1 = jsonContent.ChampionInfoBackgroundColorPercent1; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2 = jsonContent.ChampionInfoBackgroundColorColor2; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2 = jsonContent.ChampionInfoBackgroundColorPercent2; + EndGameView1Page.formatingData.ChampionInfoGradiant = jsonContent.ChampionInfoGradiant; + EndGameView1Page.formatingData.ChampionInfoBorderColor = jsonContent.ChampionInfoBorderColor; + EndGameView1Page.formatingData.ChampionInfoText = jsonContent.ChampionInfoText; + EndGameView1Page.formatingData.ChampionInfoTextColor = jsonContent.ChampionInfoTextColor; + EndGameView1Page.formatingData.ChampionInfoBlueBarColor = jsonContent.ChampionInfoBlueBarColor; + EndGameView1Page.formatingData.ChampionInfoRedBarColor = jsonContent.ChampionInfoRedBarColor; + EndGameView1Page.formatingData.ChampionInfoBlueDegaTextColor = jsonContent.ChampionInfoBlueDegaTextColor; + EndGameView1Page.formatingData.ChampionInfoRedDegaTextColor = jsonContent.ChampionInfoRedDegaTextColor; + EndGameView1Page.formatingData.BansBackgroundColor = jsonContent.BansBackgroundColor; + EndGameView1Page.formatingData.BansBackgroundColorDeg = jsonContent.BansBackgroundColorDeg; + EndGameView1Page.formatingData.BansBackgroundColorColor1 = jsonContent.BansBackgroundColorColor1; + EndGameView1Page.formatingData.BansBackgroundColorPercent1 = jsonContent.BansBackgroundColorPercent1; + EndGameView1Page.formatingData.BansBackgroundColorColor2 = jsonContent.BansBackgroundColorColor2; + EndGameView1Page.formatingData.BansBackgroundColorPercent2 = jsonContent.BansBackgroundColorPercent2; + EndGameView1Page.formatingData.BansGradiant = jsonContent.BansGradiant; + EndGameView1Page.formatingData.BansBorderColor = jsonContent.BansBorderColor; + EndGameView1Page.formatingData.BansTextColor = jsonContent.BansTextColor; + EndGameView1Page.formatingData.GlobalStatsBackgroundColor = jsonContent.GlobalStatsBackgroundColor; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorDeg = jsonContent.GlobalStatsBackgroundColorDeg; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1 = jsonContent.GlobalStatsBackgroundColorColor1; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1 = jsonContent.GlobalStatsBackgroundColorPercent1; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2 = jsonContent.GlobalStatsBackgroundColorColor2; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2 = jsonContent.GlobalStatsBackgroundColorPercent2; + EndGameView1Page.formatingData.GlobalStatsGradiant = jsonContent.GlobalStatsGradiant; + EndGameView1Page.formatingData.GlobalStatsBorderColor = jsonContent.GlobalStatsBorderColor; + EndGameView1Page.formatingData.GlobalStatsTextColor = jsonContent.GlobalStatsTextColor; + EndGameView1Page.formatingData.GlobalStatsBlueTextColor = jsonContent.GlobalStatsBlueTextColor; + EndGameView1Page.formatingData.GlobalStatsRedTextColor = jsonContent.GlobalStatsRedTextColor; + EndGameView1Page.formatingData.GoldDiffBackgroundColor = jsonContent.GoldDiffBackgroundColor; + EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg = jsonContent.GoldDiffBackgroundColorDeg; + EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1 = jsonContent.GoldDiffBackgroundColorColor1; + EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1 = jsonContent.GoldDiffBackgroundColorPercent1; + EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2 = jsonContent.GoldDiffBackgroundColorColor2; + EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2 = jsonContent.GoldDiffBackgroundColorPercent2; + EndGameView1Page.formatingData.GoldDiffGradiant = jsonContent.GoldDiffGradiant; + EndGameView1Page.formatingData.GoldDiffBorderColor = jsonContent.GoldDiffBorderColor; + EndGameView1Page.formatingData.GoldDiffText = jsonContent.GoldDiffText; + EndGameView1Page.formatingData.GoldDiffTextColor = jsonContent.GoldDiffTextColor; + EndGameView1Page.formatingData.GoldDiffBlueTextGoldColor = jsonContent.GoldDiffBlueTextGoldColor; + EndGameView1Page.formatingData.GoldDiffRedTextGoldColor = jsonContent.GoldDiffRedTextGoldColor; + EndGameView1Page.formatingData.GoldDiffZeroTextGoldColor = jsonContent.GoldDiffZeroTextGoldColor; + EndGameView1Page.formatingData.GoldDiffBluePointGoldColor = jsonContent.GoldDiffBluePointGoldColor; + EndGameView1Page.formatingData.GoldDiffRedPointGoldColor = jsonContent.GoldDiffRedPointGoldColor; + EndGameView1Page.formatingData.GoldDiffZeroPointGoldColor = jsonContent.GoldDiffZeroPointGoldColor; + EndGameView1Page.formatingData.GoldDiffStartEndPointGoldColor = jsonContent.GoldDiffStartEndPointGoldColor; + EndGameView1Page.formatingData.GoldDiffLinkPointGoldColor = jsonContent.GoldDiffLinkPointGoldColor; + EndGameView1Page.formatingData.GoldDiffBarColor = jsonContent.GoldDiffBarColor; + } + + public static void LoadConfigEndGameView2Page() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + EndGameView2Page.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + EndGameView2Page.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + EndGameView2Page.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigEndGameView2Page()", $"{EndGameView2Page.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigEndGameView2Page()", $"{EndGameView2Page.formatingData.DefaultRegion}"); + } + + public static void LoadFormatingDataConfigEndGameView2() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/EndGame/View2/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //EndGameView2Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //EndGameView2Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView2Page.formatingData.BackgroundColor = jsonContent.BackgroundColor; + EndGameView2Page.formatingData.BackgroundColorDeg = jsonContent.BackgroundColorDeg; + EndGameView2Page.formatingData.BackgroundColorColor1 = jsonContent.BackgroundColorColor1; + EndGameView2Page.formatingData.BackgroundColorPercent1 = jsonContent.BackgroundColorPercent1; + EndGameView2Page.formatingData.BackgroundColorColor2 = jsonContent.BackgroundColorColor2; + EndGameView2Page.formatingData.BackgroundColorPercent2 = jsonContent.BackgroundColorPercent2; + EndGameView2Page.formatingData.TopBarBackgroundColor = jsonContent.TopBarBackgroundColor; + EndGameView2Page.formatingData.TopBarBackgroundColorDeg = jsonContent.TopBarBackgroundColorDeg; + EndGameView2Page.formatingData.TopBarBackgroundColorColor1 = jsonContent.TopBarBackgroundColorColor1; + EndGameView2Page.formatingData.TopBarBackgroundColorPercent1 = jsonContent.TopBarBackgroundColorPercent1; + EndGameView2Page.formatingData.TopBarBackgroundColorColor2 = jsonContent.TopBarBackgroundColorColor2; + EndGameView2Page.formatingData.TopBarBackgroundColorPercent2 = jsonContent.TopBarBackgroundColorPercent2; + EndGameView2Page.formatingData.TopBarGradiant = jsonContent.TopBarGradiant; + EndGameView2Page.formatingData.TopBarBorderColor = jsonContent.TopBarBorderColor; + EndGameView2Page.formatingData.TopBarTimerText = jsonContent.TopBarTimerText; + EndGameView2Page.formatingData.TopBarTimerTextColor = jsonContent.TopBarTimerTextColor; + EndGameView2Page.formatingData.TopBarTimerColor = jsonContent.TopBarTimerColor; + EndGameView2Page.formatingData.TopBarBlueTeamName = jsonContent.TopBarBlueTeamName; + EndGameView2Page.formatingData.TopBarBlueTeamScore = jsonContent.TopBarBlueTeamScore; + EndGameView2Page.formatingData.TopBarBlueTeamNameColor = jsonContent.TopBarBlueTeamNameColor; + EndGameView2Page.formatingData.TopBarBlueTeamScoreColor = jsonContent.TopBarBlueTeamScoreColor; + EndGameView2Page.formatingData.TopBarBlueTeamWinLossColor = jsonContent.TopBarBlueTeamWinLossColor; + EndGameView2Page.formatingData.TopBarRedTeamName = jsonContent.TopBarRedTeamName; + EndGameView2Page.formatingData.TopBarRedTeamScore = jsonContent.TopBarRedTeamScore; + EndGameView2Page.formatingData.TopBarRedTeamNameColor = jsonContent.TopBarRedTeamNameColor; + EndGameView2Page.formatingData.TopBarRedTeamScoreColor = jsonContent.TopBarRedTeamScoreColor; + EndGameView2Page.formatingData.TopBarRedTeamWinLossColor = jsonContent.TopBarRedTeamWinLossColor; + EndGameView2Page.formatingData.ChampionInfoBackgroundColor = jsonContent.ChampionInfoBackgroundColor; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg = jsonContent.ChampionInfoBackgroundColorDeg; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1 = jsonContent.ChampionInfoBackgroundColorColor1; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1 = jsonContent.ChampionInfoBackgroundColorPercent1; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2 = jsonContent.ChampionInfoBackgroundColorColor2; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2 = jsonContent.ChampionInfoBackgroundColorPercent2; + EndGameView2Page.formatingData.ChampionInfoGradiant = jsonContent.ChampionInfoGradiant; + EndGameView2Page.formatingData.ChampionInfoBorderColor = jsonContent.ChampionInfoBorderColor; + EndGameView2Page.formatingData.ChampionInfoText = jsonContent.ChampionInfoText; + EndGameView2Page.formatingData.ChampionInfoTextColor = jsonContent.ChampionInfoTextColor; + EndGameView2Page.formatingData.ChampionInfoBlueBarColor = jsonContent.ChampionInfoBlueBarColor; + EndGameView2Page.formatingData.ChampionInfoRedBarColor = jsonContent.ChampionInfoRedBarColor; + EndGameView2Page.formatingData.ChampionInfoBlueDegaTextColor = jsonContent.ChampionInfoBlueDegaTextColor; + EndGameView2Page.formatingData.ChampionInfoRedDegaTextColor = jsonContent.ChampionInfoRedDegaTextColor; + EndGameView2Page.formatingData.BansBackgroundColor = jsonContent.BansBackgroundColor; + EndGameView2Page.formatingData.BansBackgroundColorDeg = jsonContent.BansBackgroundColorDeg; + EndGameView2Page.formatingData.BansBackgroundColorColor1 = jsonContent.BansBackgroundColorColor1; + EndGameView2Page.formatingData.BansBackgroundColorPercent1 = jsonContent.BansBackgroundColorPercent1; + EndGameView2Page.formatingData.BansBackgroundColorColor2 = jsonContent.BansBackgroundColorColor2; + EndGameView2Page.formatingData.BansBackgroundColorPercent2 = jsonContent.BansBackgroundColorPercent2; + EndGameView2Page.formatingData.BansGradiant = jsonContent.BansGradiant; + EndGameView2Page.formatingData.BansBorderColor = jsonContent.BansBorderColor; + EndGameView2Page.formatingData.BansTextColor = jsonContent.BansTextColor; + EndGameView2Page.formatingData.GlobalStatsBackgroundColor = jsonContent.GlobalStatsBackgroundColor; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorDeg = jsonContent.GlobalStatsBackgroundColorDeg; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1 = jsonContent.GlobalStatsBackgroundColorColor1; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1 = jsonContent.GlobalStatsBackgroundColorPercent1; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2 = jsonContent.GlobalStatsBackgroundColorColor2; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2 = jsonContent.GlobalStatsBackgroundColorPercent2; + EndGameView2Page.formatingData.GlobalStatsGradiant = jsonContent.GlobalStatsGradiant; + EndGameView2Page.formatingData.GlobalStatsBorderColor = jsonContent.GlobalStatsBorderColor; + EndGameView2Page.formatingData.GlobalStatsTextColor = jsonContent.GlobalStatsTextColor; + EndGameView2Page.formatingData.GlobalStatsBlueTextColor = jsonContent.GlobalStatsBlueTextColor; + EndGameView2Page.formatingData.GlobalStatsRedTextColor = jsonContent.GlobalStatsRedTextColor; + EndGameView2Page.formatingData.GoldDiffBackgroundColor = jsonContent.GoldDiffBackgroundColor; + EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg = jsonContent.GoldDiffBackgroundColorDeg; + EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1 = jsonContent.GoldDiffBackgroundColorColor1; + EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1 = jsonContent.GoldDiffBackgroundColorPercent1; + EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2 = jsonContent.GoldDiffBackgroundColorColor2; + EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2 = jsonContent.GoldDiffBackgroundColorPercent2; + EndGameView2Page.formatingData.GoldDiffGradiant = jsonContent.GoldDiffGradiant; + EndGameView2Page.formatingData.GoldDiffBorderColor = jsonContent.GoldDiffBorderColor; + EndGameView2Page.formatingData.GoldDiffText = jsonContent.GoldDiffText; + EndGameView2Page.formatingData.GoldDiffTextColor = jsonContent.GoldDiffTextColor; + EndGameView2Page.formatingData.GoldDiffBlueTextGoldColor = jsonContent.GoldDiffBlueTextGoldColor; + EndGameView2Page.formatingData.GoldDiffRedTextGoldColor = jsonContent.GoldDiffRedTextGoldColor; + EndGameView2Page.formatingData.GoldDiffZeroTextGoldColor = jsonContent.GoldDiffZeroTextGoldColor; + EndGameView2Page.formatingData.GoldDiffBluePointGoldColor = jsonContent.GoldDiffBluePointGoldColor; + EndGameView2Page.formatingData.GoldDiffRedPointGoldColor = jsonContent.GoldDiffRedPointGoldColor; + EndGameView2Page.formatingData.GoldDiffZeroPointGoldColor = jsonContent.GoldDiffZeroPointGoldColor; + EndGameView2Page.formatingData.GoldDiffStartEndPointGoldColor = jsonContent.GoldDiffStartEndPointGoldColor; + EndGameView2Page.formatingData.GoldDiffLinkPointGoldColor = jsonContent.GoldDiffLinkPointGoldColor; + EndGameView2Page.formatingData.GoldDiffBarColor = jsonContent.GoldDiffBarColor; + } + public static void LoadConfigEndGameView3Page() + { + try + { + string[] temps = CDragon.patch.Split("."); + Console.WriteLine(temps[0] + temps[1]); + EndGameView3Page.formatingData.DefaultPatch = temps[0] + "." + temps[1]; + } + catch (Exception e) + { + EndGameView3Page.formatingData.DefaultPatch = DirectoryManagerLocal.CheckExistingDirectoryPatch("./wwwroot/assets"); + } + EndGameView3Page.formatingData.DefaultRegion = "fr_fr"; + _logger.log(LoggingLevel.INFO, "LoadConfigEndGameView3Page()", $"{EndGameView3Page.formatingData.DefaultPatch}"); + _logger.log(LoggingLevel.INFO, "LoadConfigEndGameView3Page()", $"{EndGameView3Page.formatingData.DefaultRegion}"); + } + public static void LoadFormatingDataConfigEndGameView3() + { + string content = FileManagerLocal.ReadInFile("./Configuration/Overlay/EndGame/View3/default.json"); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //EndGameView3Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //EndGameView3Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView3Page.formatingData.BackgroundColor = jsonContent.BackgroundColor; + EndGameView3Page.formatingData.BackgroundColorDeg = jsonContent.BackgroundColorDeg; + EndGameView3Page.formatingData.BackgroundColorColor1 = jsonContent.BackgroundColorColor1; + EndGameView3Page.formatingData.BackgroundColorPercent1 = jsonContent.BackgroundColorPercent1; + EndGameView3Page.formatingData.BackgroundColorColor2 = jsonContent.BackgroundColorColor2; + EndGameView3Page.formatingData.BackgroundColorPercent2 = jsonContent.BackgroundColorPercent2; + EndGameView3Page.formatingData.TopBarBackgroundColor = jsonContent.TopBarBackgroundColor; + EndGameView3Page.formatingData.TopBarBackgroundColorDeg = jsonContent.TopBarBackgroundColorDeg; + EndGameView3Page.formatingData.TopBarBackgroundColorColor1 = jsonContent.TopBarBackgroundColorColor1; + EndGameView3Page.formatingData.TopBarBackgroundColorPercent1 = jsonContent.TopBarBackgroundColorPercent1; + EndGameView3Page.formatingData.TopBarBackgroundColorColor2 = jsonContent.TopBarBackgroundColorColor2; + EndGameView3Page.formatingData.TopBarBackgroundColorPercent2 = jsonContent.TopBarBackgroundColorPercent2; + EndGameView3Page.formatingData.TopBarGradiant = jsonContent.TopBarGradiant; + EndGameView3Page.formatingData.TopBarBorderColor = jsonContent.TopBarBorderColor; + EndGameView3Page.formatingData.TopBarTimerText = jsonContent.TopBarTimerText; + EndGameView3Page.formatingData.TopBarTimerTextColor = jsonContent.TopBarTimerTextColor; + EndGameView3Page.formatingData.TopBarTimerColor = jsonContent.TopBarTimerColor; + EndGameView3Page.formatingData.TopBarBlueTeamName = jsonContent.TopBarBlueTeamName; + EndGameView3Page.formatingData.TopBarBlueTeamScore = jsonContent.TopBarBlueTeamScore; + EndGameView3Page.formatingData.TopBarBlueTeamNameColor = jsonContent.TopBarBlueTeamNameColor; + EndGameView3Page.formatingData.TopBarBlueTeamScoreColor = jsonContent.TopBarBlueTeamScoreColor; + EndGameView3Page.formatingData.TopBarBlueTeamWinLossColor = jsonContent.TopBarBlueTeamWinLossColor; + EndGameView3Page.formatingData.TopBarRedTeamName = jsonContent.TopBarRedTeamName; + EndGameView3Page.formatingData.TopBarRedTeamScore = jsonContent.TopBarRedTeamScore; + EndGameView3Page.formatingData.TopBarRedTeamNameColor = jsonContent.TopBarRedTeamNameColor; + EndGameView3Page.formatingData.TopBarRedTeamScoreColor = jsonContent.TopBarRedTeamScoreColor; + EndGameView3Page.formatingData.TopBarRedTeamWinLossColor = jsonContent.TopBarRedTeamWinLossColor; + EndGameView3Page.formatingData.ChampionInfoBackgroundColor = jsonContent.ChampionInfoBackgroundColor; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg = jsonContent.ChampionInfoBackgroundColorDeg; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1 = jsonContent.ChampionInfoBackgroundColorColor1; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1 = jsonContent.ChampionInfoBackgroundColorPercent1; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2 = jsonContent.ChampionInfoBackgroundColorColor2; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2 = jsonContent.ChampionInfoBackgroundColorPercent2; + EndGameView3Page.formatingData.ChampionInfoGradiant = jsonContent.ChampionInfoGradiant; + EndGameView3Page.formatingData.ChampionInfoBorderColor = jsonContent.ChampionInfoBorderColor; + EndGameView3Page.formatingData.ChampionInfoText = jsonContent.ChampionInfoText; + EndGameView3Page.formatingData.ChampionInfoTextColor = jsonContent.ChampionInfoTextColor; + EndGameView3Page.formatingData.ChampionInfoBlueBarColor = jsonContent.ChampionInfoBlueBarColor; + EndGameView3Page.formatingData.ChampionInfoRedBarColor = jsonContent.ChampionInfoRedBarColor; + EndGameView3Page.formatingData.ChampionInfoBlueDegaTextColor = jsonContent.ChampionInfoBlueDegaTextColor; + EndGameView3Page.formatingData.ChampionInfoRedDegaTextColor = jsonContent.ChampionInfoRedDegaTextColor; + EndGameView3Page.formatingData.BansBackgroundColor = jsonContent.BansBackgroundColor; + EndGameView3Page.formatingData.BansBackgroundColorDeg = jsonContent.BansBackgroundColorDeg; + EndGameView3Page.formatingData.BansBackgroundColorColor1 = jsonContent.BansBackgroundColorColor1; + EndGameView3Page.formatingData.BansBackgroundColorPercent1 = jsonContent.BansBackgroundColorPercent1; + EndGameView3Page.formatingData.BansBackgroundColorColor2 = jsonContent.BansBackgroundColorColor2; + EndGameView3Page.formatingData.BansBackgroundColorPercent2 = jsonContent.BansBackgroundColorPercent2; + EndGameView3Page.formatingData.BansGradiant = jsonContent.BansGradiant; + EndGameView3Page.formatingData.BansBorderColor = jsonContent.BansBorderColor; + EndGameView3Page.formatingData.BansTextColor = jsonContent.BansTextColor; + EndGameView3Page.formatingData.GlobalStatsBackgroundColor = jsonContent.GlobalStatsBackgroundColor; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorDeg = jsonContent.GlobalStatsBackgroundColorDeg; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1 = jsonContent.GlobalStatsBackgroundColorColor1; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1 = jsonContent.GlobalStatsBackgroundColorPercent1; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2 = jsonContent.GlobalStatsBackgroundColorColor2; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2 = jsonContent.GlobalStatsBackgroundColorPercent2; + EndGameView3Page.formatingData.GlobalStatsGradiant = jsonContent.GlobalStatsGradiant; + EndGameView3Page.formatingData.GlobalStatsBorderColor = jsonContent.GlobalStatsBorderColor; + EndGameView3Page.formatingData.GlobalStatsSeparationColor = jsonContent.GlobalStatsSeparationColor; + EndGameView3Page.formatingData.GlobalStatsTextColor = jsonContent.GlobalStatsTextColor; + EndGameView3Page.formatingData.GlobalStatsBlueTextColor = jsonContent.GlobalStatsBlueTextColor; + EndGameView3Page.formatingData.GlobalStatsRedTextColor = jsonContent.GlobalStatsRedTextColor; + EndGameView3Page.formatingData.GoldDiffBackgroundColor = jsonContent.GoldDiffBackgroundColor; + EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg = jsonContent.GoldDiffBackgroundColorDeg; + EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1 = jsonContent.GoldDiffBackgroundColorColor1; + EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1 = jsonContent.GoldDiffBackgroundColorPercent1; + EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2 = jsonContent.GoldDiffBackgroundColorColor2; + EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2 = jsonContent.GoldDiffBackgroundColorPercent2; + EndGameView3Page.formatingData.GoldDiffGradiant = jsonContent.GoldDiffGradiant; + EndGameView3Page.formatingData.GoldDiffBorderColor = jsonContent.GoldDiffBorderColor; + EndGameView3Page.formatingData.GoldDiffText = jsonContent.GoldDiffText; + EndGameView3Page.formatingData.GoldDiffTextColor = jsonContent.GoldDiffTextColor; + EndGameView3Page.formatingData.GoldDiffBlueTextGoldColor = jsonContent.GoldDiffBlueTextGoldColor; + EndGameView3Page.formatingData.GoldDiffRedTextGoldColor = jsonContent.GoldDiffRedTextGoldColor; + EndGameView3Page.formatingData.GoldDiffZeroTextGoldColor = jsonContent.GoldDiffZeroTextGoldColor; + EndGameView3Page.formatingData.GoldDiffBluePointGoldColor = jsonContent.GoldDiffBluePointGoldColor; + EndGameView3Page.formatingData.GoldDiffRedPointGoldColor = jsonContent.GoldDiffRedPointGoldColor; + EndGameView3Page.formatingData.GoldDiffZeroPointGoldColor = jsonContent.GoldDiffZeroPointGoldColor; + EndGameView3Page.formatingData.GoldDiffStartEndPointGoldColor = jsonContent.GoldDiffStartEndPointGoldColor; + EndGameView3Page.formatingData.GoldDiffLinkPointGoldColor = jsonContent.GoldDiffLinkPointGoldColor; + EndGameView3Page.formatingData.GoldDiffBarColor = jsonContent.GoldDiffBarColor; + } } -} +} \ No newline at end of file diff --git a/OSL-Server/Configuration/Overlay/EndGame/View1/default.json b/OSL-Server/Configuration/Overlay/EndGame/View1/default.json new file mode 100644 index 0000000..b229b0f --- /dev/null +++ b/OSL-Server/Configuration/Overlay/EndGame/View1/default.json @@ -0,0 +1,84 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "BackgroundColorDeg": "90", + "BackgroundColorColor1": "#0b849e", + "BackgroundColorPercent1": "0", + "BackgroundColorColor2": "#be1e37", + "BackgroundColorPercent2": "100", + "TopBarBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "TopBarBackgroundColorDeg": "90", + "TopBarBackgroundColorColor1": "#0b849e", + "TopBarBackgroundColorPercent1": "0", + "TopBarBackgroundColorColor2": "#be1e37", + "TopBarBackgroundColorPercent2": "100", + "TopBarGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "TopBarBorderColor": "5px solid #c99d53", + "TopBarTimerText": "Temps de jeux", + "TopBarTimerTextColor": "#c99d53", + "TopBarTimerColor": "#c99d53", + "TopBarBlueTeamName": "Skynet", + "TopBarBlueTeamScore": "", + "TopBarBlueTeamNameColor": "#ffffff", + "TopBarBlueTeamScoreColor": "#ffffff", + "TopBarBlueTeamWinLossColor": "#ffffff", + "TopBarRedTeamName": "CSC", + "TopBarRedTeamScore": "", + "TopBarRedTeamNameColor": "#ffffff", + "TopBarRedTeamScoreColor": "#ffffff", + "TopBarRedTeamWinLossColor": "#ffffff", + "ChampionInfoBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "ChampionInfoBackgroundColorDeg": "90", + "ChampionInfoBackgroundColorColor1": "#0b849e", + "ChampionInfoBackgroundColorPercent1": "0", + "ChampionInfoBackgroundColorColor2": "#be1e37", + "ChampionInfoBackgroundColorPercent2": "100", + "ChampionInfoGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "ChampionInfoBorderColor": "5px solid #c99d53", + "ChampionInfoText": "Dégâts aux champions", + "ChampionInfoTextColor": "#c99d53", + "ChampionInfoBlueBarColor": "#0b849e", + "ChampionInfoRedBarColor": "#be1e37", + "ChampionInfoBlueDegaTextColor": "#ffffff", + "ChampionInfoRedDegaTextColor": "#ffffff", + "BansBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "BansBackgroundColorDeg": "90", + "BansBackgroundColorColor1": "#0b849e", + "BansBackgroundColorPercent1": "0", + "BansBackgroundColorColor2": "#be1e37", + "BansBackgroundColorPercent2": "100", + "BansGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "BansBorderColor": "5px solid #c99d53", + "BansTextColor": "#c99d53", + "GlobalStatsBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "GlobalStatsBackgroundColorDeg": "90", + "GlobalStatsBackgroundColorColor1": "#0b849e", + "GlobalStatsBackgroundColorPercent1": "0", + "GlobalStatsBackgroundColorColor2": "#be1e37", + "GlobalStatsBackgroundColorPercent2": "100", + "GlobalStatsGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "GlobalStatsBorderColor": "5px solid #c99d53", + "GlobalStatsTextColor": "#c99d53", + "GlobalStatsBlueTextColor": "#ffffff", + "GlobalStatsRedTextColor": "#ffffff", + "GoldDiffBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "GoldDiffBackgroundColorDeg": "90", + "GoldDiffBackgroundColorColor1": "#0b849e", + "GoldDiffBackgroundColorPercent1": "0", + "GoldDiffBackgroundColorColor2": "#be1e37", + "GoldDiffBackgroundColorPercent2": "100", + "GoldDiffGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "GoldDiffBorderColor": "5px solid #c99d53", + "GoldDiffText": "Différence de gold", + "GoldDiffTextColor": "#c99d53", + "GoldDiffBlueTextGoldColor": "#0b849e", + "GoldDiffRedTextGoldColor": "#be1e37", + "GoldDiffZeroTextGoldColor": "#ffffff", + "GoldDiffBluePointGoldColor": "#0b849e", + "GoldDiffRedPointGoldColor": "#be1e37", + "GoldDiffZeroPointGoldColor": "#ffffff", + "GoldDiffStartEndPointGoldColor": "#ffffff", + "GoldDiffLinkPointGoldColor": "#c99d53", + "GoldDiffBarColor": "1px dashed #ffffff" +} diff --git a/OSL-Server/Configuration/Overlay/EndGame/View2/default.json b/OSL-Server/Configuration/Overlay/EndGame/View2/default.json new file mode 100644 index 0000000..b229b0f --- /dev/null +++ b/OSL-Server/Configuration/Overlay/EndGame/View2/default.json @@ -0,0 +1,84 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "BackgroundColorDeg": "90", + "BackgroundColorColor1": "#0b849e", + "BackgroundColorPercent1": "0", + "BackgroundColorColor2": "#be1e37", + "BackgroundColorPercent2": "100", + "TopBarBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "TopBarBackgroundColorDeg": "90", + "TopBarBackgroundColorColor1": "#0b849e", + "TopBarBackgroundColorPercent1": "0", + "TopBarBackgroundColorColor2": "#be1e37", + "TopBarBackgroundColorPercent2": "100", + "TopBarGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "TopBarBorderColor": "5px solid #c99d53", + "TopBarTimerText": "Temps de jeux", + "TopBarTimerTextColor": "#c99d53", + "TopBarTimerColor": "#c99d53", + "TopBarBlueTeamName": "Skynet", + "TopBarBlueTeamScore": "", + "TopBarBlueTeamNameColor": "#ffffff", + "TopBarBlueTeamScoreColor": "#ffffff", + "TopBarBlueTeamWinLossColor": "#ffffff", + "TopBarRedTeamName": "CSC", + "TopBarRedTeamScore": "", + "TopBarRedTeamNameColor": "#ffffff", + "TopBarRedTeamScoreColor": "#ffffff", + "TopBarRedTeamWinLossColor": "#ffffff", + "ChampionInfoBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "ChampionInfoBackgroundColorDeg": "90", + "ChampionInfoBackgroundColorColor1": "#0b849e", + "ChampionInfoBackgroundColorPercent1": "0", + "ChampionInfoBackgroundColorColor2": "#be1e37", + "ChampionInfoBackgroundColorPercent2": "100", + "ChampionInfoGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "ChampionInfoBorderColor": "5px solid #c99d53", + "ChampionInfoText": "Dégâts aux champions", + "ChampionInfoTextColor": "#c99d53", + "ChampionInfoBlueBarColor": "#0b849e", + "ChampionInfoRedBarColor": "#be1e37", + "ChampionInfoBlueDegaTextColor": "#ffffff", + "ChampionInfoRedDegaTextColor": "#ffffff", + "BansBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "BansBackgroundColorDeg": "90", + "BansBackgroundColorColor1": "#0b849e", + "BansBackgroundColorPercent1": "0", + "BansBackgroundColorColor2": "#be1e37", + "BansBackgroundColorPercent2": "100", + "BansGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "BansBorderColor": "5px solid #c99d53", + "BansTextColor": "#c99d53", + "GlobalStatsBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "GlobalStatsBackgroundColorDeg": "90", + "GlobalStatsBackgroundColorColor1": "#0b849e", + "GlobalStatsBackgroundColorPercent1": "0", + "GlobalStatsBackgroundColorColor2": "#be1e37", + "GlobalStatsBackgroundColorPercent2": "100", + "GlobalStatsGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "GlobalStatsBorderColor": "5px solid #c99d53", + "GlobalStatsTextColor": "#c99d53", + "GlobalStatsBlueTextColor": "#ffffff", + "GlobalStatsRedTextColor": "#ffffff", + "GoldDiffBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "GoldDiffBackgroundColorDeg": "90", + "GoldDiffBackgroundColorColor1": "#0b849e", + "GoldDiffBackgroundColorPercent1": "0", + "GoldDiffBackgroundColorColor2": "#be1e37", + "GoldDiffBackgroundColorPercent2": "100", + "GoldDiffGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "GoldDiffBorderColor": "5px solid #c99d53", + "GoldDiffText": "Différence de gold", + "GoldDiffTextColor": "#c99d53", + "GoldDiffBlueTextGoldColor": "#0b849e", + "GoldDiffRedTextGoldColor": "#be1e37", + "GoldDiffZeroTextGoldColor": "#ffffff", + "GoldDiffBluePointGoldColor": "#0b849e", + "GoldDiffRedPointGoldColor": "#be1e37", + "GoldDiffZeroPointGoldColor": "#ffffff", + "GoldDiffStartEndPointGoldColor": "#ffffff", + "GoldDiffLinkPointGoldColor": "#c99d53", + "GoldDiffBarColor": "1px dashed #ffffff" +} diff --git a/OSL-Server/Configuration/Overlay/EndGame/View3/default.json b/OSL-Server/Configuration/Overlay/EndGame/View3/default.json new file mode 100644 index 0000000..1aa603d --- /dev/null +++ b/OSL-Server/Configuration/Overlay/EndGame/View3/default.json @@ -0,0 +1,85 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroundColor": "linear-gradient(45deg, #01cdf9ff 0%, #fd042bff 100%)", + "BackgroundColorDeg": "90", + "BackgroundColorColor1": "#0b849e", + "BackgroundColorPercent1": "0", + "BackgroundColorColor2": "#be1e37", + "BackgroundColorPercent2": "100", + "TopBarBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "TopBarBackgroundColorDeg": "90", + "TopBarBackgroundColorColor1": "#0b849e", + "TopBarBackgroundColorPercent1": "0", + "TopBarBackgroundColorColor2": "#be1e37", + "TopBarBackgroundColorPercent2": "100", + "TopBarGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "TopBarBorderColor": "0px solid #c99d53", + "TopBarTimerText": "Temps de jeux", + "TopBarTimerTextColor": "#c99d53", + "TopBarTimerColor": "#c99d53", + "TopBarBlueTeamName": "Skynet", + "TopBarBlueTeamScore": "", + "TopBarBlueTeamNameColor": "#ffffff", + "TopBarBlueTeamScoreColor": "#ffffff", + "TopBarBlueTeamWinLossColor": "#ffffff", + "TopBarRedTeamName": "CSC", + "TopBarRedTeamScore": "", + "TopBarRedTeamNameColor": "#ffffff", + "TopBarRedTeamScoreColor": "#ffffff", + "TopBarRedTeamWinLossColor": "#ffffff", + "ChampionInfoBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "ChampionInfoBackgroundColorDeg": "90", + "ChampionInfoBackgroundColorColor1": "#0b849e", + "ChampionInfoBackgroundColorPercent1": "0", + "ChampionInfoBackgroundColorColor2": "#be1e37", + "ChampionInfoBackgroundColorPercent2": "100", + "ChampionInfoGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "ChampionInfoBorderColor": "0px solid #c99d53", + "ChampionInfoText": "Dégâts aux champions", + "ChampionInfoTextColor": "#c99d53", + "ChampionInfoBlueBarColor": "#0b849e", + "ChampionInfoRedBarColor": "#be1e37", + "ChampionInfoBlueDegaTextColor": "#ffffff", + "ChampionInfoRedDegaTextColor": "#ffffff", + "BansBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "BansBackgroundColorDeg": "90", + "BansBackgroundColorColor1": "#0b849e", + "BansBackgroundColorPercent1": "0", + "BansBackgroundColorColor2": "#be1e37", + "BansBackgroundColorPercent2": "100", + "BansGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "BansBorderColor": "0px solid #c99d53", + "BansTextColor": "#c99d53", + "GlobalStatsBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "GlobalStatsBackgroundColorDeg": "90", + "GlobalStatsBackgroundColorColor1": "#0b849e", + "GlobalStatsBackgroundColorPercent1": "0", + "GlobalStatsBackgroundColorColor2": "#be1e37", + "GlobalStatsBackgroundColorPercent2": "100", + "GlobalStatsGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "GlobalStatsBorderColor": "0px solid #c99d53", + "GlobalStatsSeparationColor": "2px solid #ffffff", + "GlobalStatsTextColor": "#c99d53", + "GlobalStatsBlueTextColor": "#ffffff", + "GlobalStatsRedTextColor": "#ffffff", + "GoldDiffBackgroundColor": "linear-gradient(90deg, #0b849e 0%, #be1e37 100%)", + "GoldDiffBackgroundColorDeg": "90", + "GoldDiffBackgroundColorColor1": "#0b849e", + "GoldDiffBackgroundColorPercent1": "0", + "GoldDiffBackgroundColorColor2": "#be1e37", + "GoldDiffBackgroundColorPercent2": "100", + "GoldDiffGradiant": "linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.72) 100%)", + "GoldDiffBorderColor": "0px solid #c99d53", + "GoldDiffText": "Différence de gold", + "GoldDiffTextColor": "#c99d53", + "GoldDiffBlueTextGoldColor": "#0b849e", + "GoldDiffRedTextGoldColor": "#be1e37", + "GoldDiffZeroTextGoldColor": "#ffffff", + "GoldDiffBluePointGoldColor": "#0b849e", + "GoldDiffRedPointGoldColor": "#be1e37", + "GoldDiffZeroPointGoldColor": "#ffffff", + "GoldDiffStartEndPointGoldColor": "#ffffff", + "GoldDiffLinkPointGoldColor": "#c99d53", + "GoldDiffBarColor": "1px dashed #ffffff" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/Adc/default.json b/OSL-Server/Configuration/Overlay/Runes/Adc/default.json new file mode 100644 index 0000000..35346fb --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/Adc/default.json @@ -0,0 +1,19 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "BackgroudGradientDeg": "150", + "BackgroudGradientColor1": "#0b849e", + "BackgroudGradientPercent1": "0", + "BackgroudGradientColor2": "#be1e37", + "BackgroudGradientPercent2": "100", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-2.png", + "LanePicture": "./assets/runes/position_bottom.png" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/AdcSupp/default.json b/OSL-Server/Configuration/Overlay/Runes/AdcSupp/default.json new file mode 100644 index 0000000..68327fc --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/AdcSupp/default.json @@ -0,0 +1,15 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-2.png", + "LanePictureAdc": "./assets/runes/position_bottom.png", + "LanePictureSupp": "./assets/runes/position_support.png" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/All/default.json b/OSL-Server/Configuration/Overlay/Runes/All/default.json new file mode 100644 index 0000000..962bc53 --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/All/default.json @@ -0,0 +1,18 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-3.png", + "LanePictureAdc": "./assets/runes/position_bottom.png", + "LanePictureSupp": "./assets/runes/position_support.png", + "LanePictureTop": "./assets/runes/position_top.png", + "LanePictureMid": "./assets/runes/position_mid.png", + "LanePictureJungle": "./assets/runes/position_jungle.png" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/Jungle/default.json b/OSL-Server/Configuration/Overlay/Runes/Jungle/default.json new file mode 100644 index 0000000..d02c42e --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/Jungle/default.json @@ -0,0 +1,14 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-2.png", + "LanePicture": "./assets/runes/position_jungle.png" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/Mid/default.json b/OSL-Server/Configuration/Overlay/Runes/Mid/default.json new file mode 100644 index 0000000..af9acec --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/Mid/default.json @@ -0,0 +1,14 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-2.png", + "LanePicture": "./assets/runes/position_mid.png" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/Support/default.json b/OSL-Server/Configuration/Overlay/Runes/Support/default.json new file mode 100644 index 0000000..8952a00 --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/Support/default.json @@ -0,0 +1,14 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-2.png", + "LanePicture": "./assets/runes/position_support.png" +} diff --git a/OSL-Server/Configuration/Overlay/Runes/Top/default.json b/OSL-Server/Configuration/Overlay/Runes/Top/default.json new file mode 100644 index 0000000..63b094f --- /dev/null +++ b/OSL-Server/Configuration/Overlay/Runes/Top/default.json @@ -0,0 +1,14 @@ +{ + "DefaultPatch": "latest", + "DefaultRegion": "fr_fr", + "BackgroudGradient": "linear-gradient(150deg, #0b849e 0%, #be1e37 100%)", + "OverlayColorBackgroudGradient": "linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% )", + "BlueSideColorTextSummoner": "#0b849e", + "RedSideColorTextSummoner": "#be1e37", + "BlueSideColorBorderChampion": "2px solid #c99d53", + "RedSideColorBorderChampion": "2px solid #c99d53", + "BlueSideColorSeparationBar": "#c99d53", + "RedSideColorSeparationBar": "#c99d53", + "BakgroundPicture": "./assets/runes/background-2-2.png", + "LanePicture": "./assets/runes/position_top.png" +} diff --git a/OSL-Server/Data/WeatherForecast.cs b/OSL-Server/Data/WeatherForecast.cs deleted file mode 100644 index cc92799..0000000 --- a/OSL-Server/Data/WeatherForecast.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace OSL_Server.Data -{ - public class WeatherForecast - { - public DateTime Date { get; set; } - - public int TemperatureC { get; set; } - - public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); - - public string? Summary { get; set; } - } -} \ No newline at end of file diff --git a/OSL-Server/Data/WeatherForecastService.cs b/OSL-Server/Data/WeatherForecastService.cs deleted file mode 100644 index 200cdeb..0000000 --- a/OSL-Server/Data/WeatherForecastService.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace OSL_Server.Data -{ - public class WeatherForecastService - { - private static readonly string[] Summaries = new[] - { - "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" - }; - - public Task GetForecastAsync(DateTime startDate) - { - return Task.FromResult(Enumerable.Range(1, 5).Select(index => new WeatherForecast - { - Date = startDate.AddDays(index), - TemperatureC = Random.Shared.Next(-20, 55), - Summary = Summaries[Random.Shared.Next(Summaries.Length)] - }).ToArray()); - } - } -} \ No newline at end of file diff --git a/OSL-Server/DataLoader/CDragon/PerksManager.cs b/OSL-Server/DataLoader/CDragon/PerksManager.cs index d9ed8f5..add22f8 100644 --- a/OSL-Server/DataLoader/CDragon/PerksManager.cs +++ b/OSL-Server/DataLoader/CDragon/PerksManager.cs @@ -53,40 +53,48 @@ public static void DownloadPerksComposent(string numPatch, string region, string OSL_Server.Download.Download.errorDownloadAllFile = 0; foreach (dynamic perk in jsonPerks) { - perksDirectory = DirectoryManagerLocal.perksDirectory; - int perkId = perk.id; - //string perkName = perk.name; - string iconPath = perk.iconPath; - string[] parseIconPath = iconPath.Split('/'); - string perkFullName = ""; - if (iconPath.Contains("StatMods/")) + try { - perkFullName = parseIconPath[parseIconPath.Length - 2] + "/" + parseIconPath[parseIconPath.Length - 1]; - perkFullName = perkFullName.ToLower(); - perksDirectory += "StatMods/"; - DirectoryManagerLocal.CreateDirectory(perksDirectory); - } - else if (iconPath.Contains("Styles/")) - { - for (int i = 5; i < parseIconPath.Length; i++) + perksDirectory = DirectoryManagerLocal.perksDirectory; + int perkId = perk.id; + //string perkName = perk.name; + string iconPath = perk.iconPath; + string[] parseIconPath = iconPath.Split('/'); + string perkFullName = ""; + if (iconPath.Contains("StatMods/")) { - perkFullName += parseIconPath[i]; - if (i != parseIconPath.Length - 1) - { - perkFullName += "/"; - } + perkFullName = parseIconPath[parseIconPath.Length - 2] + "/" + parseIconPath[parseIconPath.Length - 1]; + perkFullName = perkFullName.ToLower(); + perksDirectory += "StatMods/"; + DirectoryManagerLocal.CreateDirectory(perksDirectory); } - perkFullName = perkFullName.ToLower(); - perksDirectory += "Styles/"; - if (parseIconPath.Length > 5) + else if (iconPath.Contains("Styles/")) { - perksDirectory += parseIconPath[6] + "/"; + for (int i = 5; i < parseIconPath.Length; i++) + { + perkFullName += parseIconPath[i]; + if (i != parseIconPath.Length - 1) + { + perkFullName += "/"; + } + } + perkFullName = perkFullName.ToLower(); + perksDirectory += "Styles/"; + if (parseIconPath.Length > 5) + { + perksDirectory += parseIconPath[6] + "/"; + } + DirectoryManagerLocal.CreateDirectory(perksDirectory); } - DirectoryManagerLocal.CreateDirectory(perksDirectory); + //string perkFullName = parseIconPath[parseIconPath.Length - 1]; + //perkFullName = perkFullName.ToLower(); + _logger.log(LoggingLevel.INFO, "PerksAsyncDownload()", $"Run PerksAsyncDownload"); + PerksAsyncDownload(indexPatch, indexRegion, numPatch, perk, perksDirectory, perkId, perkFullName); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "PerksAsyncDownload()", $"Errot, PerksAsyncDownload not run : {e.Message}"); } - //string perkFullName = parseIconPath[parseIconPath.Length - 1]; - //perkFullName = perkFullName.ToLower(); - PerksAsyncDownload(indexPatch, indexRegion, numPatch, perk, perksDirectory, perkId, perkFullName); } int infini = 0; while (OSL_Server.Download.Download.downloadAllFile > 0 && OSL_Server.Download.Download.errorDownloadAllFile == 0 && infini != 200) @@ -98,9 +106,9 @@ public static void DownloadPerksComposent(string numPatch, string region, string _logger.log(LoggingLevel.INFO, "PerksAsyncDownload()", $"{OSL_Server.Download.Download.errorDownloadAllFile} error of download"); } - catch + catch (Exception e) { - _logger.log(LoggingLevel.ERROR, "DownloadPerksComposent()", $"Error json perks component"); + _logger.log(LoggingLevel.ERROR, "DownloadPerksComposent()", $"Error json perks component : {e.Message}"); } } } @@ -177,7 +185,9 @@ public static void UpdateDataCDragonPerks(int indexPatch, int indexRegion, dynam Perks perksData = new Perks(); perksData.Id = perk.id; perksData.Name = perk.name; - perksData.IconPath = perkIcone; + String[] splitPerkIcone = perkIcone.Split("/wwwroot"); + //perksData.IconPath = perkIcone.Remove(1, 7); + perksData.IconPath = splitPerkIcone[0] + splitPerkIcone[1]; //itemData.From = new(); int perksId = perk.id; diff --git a/OSL-Server/DataLoader/WebApiRiot/Match-V5.cs b/OSL-Server/DataLoader/WebApiRiot/Match-V5.cs new file mode 100644 index 0000000..35de167 --- /dev/null +++ b/OSL-Server/DataLoader/WebApiRiot/Match-V5.cs @@ -0,0 +1,53 @@ +using System; + +namespace OSL_Server.DataLoader.WebApiRiot +{ + public class Match_V5 + { + private static string httpsUrl = "https://"; + private static string region = "europe"; + private static string pathUrlApiRiot = ".api.riotgames.com"; + + public static string ByPuuid(string puuid, long startTime = -1, long endTime = -1, int queue = -1, string type = "", int start = -1, int count = -1) + { + string buildUrl = $"{httpsUrl}{region}{pathUrlApiRiot}/lol/match/v5/matches/by-puuid/{puuid}/ids?"; + if (startTime != -1) + { + buildUrl += $"startTime={startTime}&"; + } + if (endTime != -1) + { + buildUrl += $"endTime={endTime}&"; + } + if (queue != -1) + { + buildUrl += $"queue={queue}&"; + } + if (type != "") + { + buildUrl += $"type={type}&"; + } + if (start != -1) + { + buildUrl += $"start={start}&"; + } + if (count != -1) + { + buildUrl += $"count={count}"; + } + + return buildUrl; + } + + public static string Matches(Int64 matchId) + { + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/match/v5/matches/EUW1_{matchId}"; + } + + public static string Timeline(Int64 matchId) + { + //return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/match/v5/matches/EUW1_{matchId}/timeline"; + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/match/v5/matches/EUW1_{matchId}/timeline"; + } + } +} diff --git a/OSL-Server/DataLoader/WebApiRiot/Spectator-V4.cs b/OSL-Server/DataLoader/WebApiRiot/Spectator-V4.cs new file mode 100644 index 0000000..5dfbc76 --- /dev/null +++ b/OSL-Server/DataLoader/WebApiRiot/Spectator-V4.cs @@ -0,0 +1,14 @@ +namespace OSL_Server.DataLoader.WebApiRiot +{ + public class Spectator_V4 + { + private static string httpsUrl = "https://"; + private static string region = "euw1"; + private static string pathUrlApiRiot = ".api.riotgames.com"; + + public static string BySummoner(string encryptedSummonerId) + { + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId}"; + } + } +} diff --git a/OSL-Server/DataLoader/WebApiRiot/Summoner-V4.cs b/OSL-Server/DataLoader/WebApiRiot/Summoner-V4.cs new file mode 100644 index 0000000..529dbf7 --- /dev/null +++ b/OSL-Server/DataLoader/WebApiRiot/Summoner-V4.cs @@ -0,0 +1,37 @@ +namespace OSL_Server.DataLoader.WebApiRiot +{ + public class Summoner_V4 + { + private static string httpsUrl = "https://"; + private static string region = "euw1"; + private static string pathUrlApiRiot = ".api.riotgames.com"; + + public static string ByAccount(string encryptedAccountId) + { + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/summoner/v4/summoners/by-account/{encryptedAccountId}"; + } + public static string ByName(string summonerName) + { + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/summoner/v4/summoners/by-name/{summonerName}"; + } + public static string ByPuuid(string encryptedPUUID) + { + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/summoner/v4/summoners/by-puuid/{encryptedPUUID}"; + } + public static string BySummonerId(string encryptedSummonerId) + { + return $"{httpsUrl}{region}{pathUrlApiRiot}/lol/summoner/v4/summoners/{encryptedSummonerId}"; + } + } + + public class SummonerDTO + { + public string AccountId { get; set; } + public int ProfileIconId { get; set; } + public long RevisionDate { get; set; } + public string Name { get; set; } + public string Id { get; set; } + public string Puuid { get; set; } + public long SummonerLevel { get; set; } + } +} diff --git a/OSL-Server/DataLoader/WebApiRiot/WebApiRiot.cs b/OSL-Server/DataLoader/WebApiRiot/WebApiRiot.cs new file mode 100644 index 0000000..52579b3 --- /dev/null +++ b/OSL-Server/DataLoader/WebApiRiot/WebApiRiot.cs @@ -0,0 +1,90 @@ +using Newtonsoft.Json; +using System.Net; +using System.Runtime.Intrinsics.X86; +using System.Xml.Linq; +using static OSL_Server.DataLoader.WebApiRiot.UrlRequest; + +namespace OSL_Server.DataLoader.WebApiRiot +{ + /// + /// Connect and get data from web riot api. + /// + public class WebApiRiot + { + private static OSLLogger _logger = new OSLLogger("WebApiRiot"); + public static string apiKey; + + public static void GetResponseWebApiRiot() + { + //Console.WriteLine(RequestWebApiRiot(Summoner_V4.ByName("Sky csc"))); + //Console.WriteLine(RequestWebApiRiot(Summoner_V4.ByName("Skynet csc"))); + //Console.WriteLine(RequestWebApiRiot(Summoner_V4.ByName("Master Kyber"))); + //Console.WriteLine(RequestWebApiRiot(Match_V5.ByPuuid("r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ", start: 0, count:2))); + //Console.WriteLine(RequestWebApiRiot(Match_V5.Matches("EUW1_6281337448"))); + dynamic jsonSummonerName = JsonConvert.DeserializeObject(RequestWebApiRiot(Summoner_V4.ByName("Sky csc"))); + //string puuid = jsonSummonerName.puuid; + //dynamic jsonMatch = JsonConvert.DeserializeObject(RequestWebApiRiot(Match_V5.ByPuuid(puuid, start: 0, count: 50))); + //int x = 0; + //int y = 0; + //foreach (string gameId in jsonMatch) + //{ + // dynamic jsonMatchInfo = JsonConvert.DeserializeObject(RequestWebApiRiot(Match_V5.Matches(gameId))); + // foreach (var participants in jsonMatchInfo.info.participants) + // { + // string participantsPuuid = participants.puuid; + // if (participantsPuuid.Equals(puuid)) + // { + // Console.WriteLine(participants.championName); + // Console.WriteLine(participants.win); + // if (participants.win == true) + // { + // x++; + // } + // else + // { + // y++; + // } + // } + // } + //} + + //Console.WriteLine("Win : " + x + " Lose : " + y); + + string id = jsonSummonerName.id; + if (RequestWebApiRiot(Spectator_V4.BySummoner(id)) != null) + { + dynamic jsonStectator = JsonConvert.DeserializeObject(RequestWebApiRiot(Spectator_V4.BySummoner(id))); + } + } + + public static string RequestWebApiRiot(string urlRequest) + { + string httpsWebApiRiot = urlRequest; + try + { + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(httpsWebApiRiot); + request.Headers["X-Riot-Token"] = apiKey; + Console.WriteLine(apiKey); + _logger.log(LoggingLevel.INFO, "apiKey", "apiKey " + apiKey); + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + Stream resStream = response.GetResponseStream(); + StreamReader reader = new StreamReader(resStream); + _logger.log(LoggingLevel.INFO, "RequestGameClientReplayAPI", "Request to " + httpsWebApiRiot + " was successful"); + return reader.ReadToEnd(); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "RequestGameClientReplayAPI", "Request to " + httpsWebApiRiot + " failed, " + e.Message); + return null; + } + } + + + + } + + public class UrlRequest + { + public static readonly string lolSummonerV4SummonersByname = "/lol/summoner/v4/summoners/by-name/"; + } +} diff --git a/OSL-Server/DataReciveClient/Processing/EndGame/EndGameInfo.cs b/OSL-Server/DataReciveClient/Processing/EndGame/EndGameInfo.cs new file mode 100644 index 0000000..9f302e1 --- /dev/null +++ b/OSL-Server/DataReciveClient/Processing/EndGame/EndGameInfo.cs @@ -0,0 +1,260 @@ +using Newtonsoft.Json; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; +//using OSL_Server.DataReciveClient.Processing.ChampSelect; +using System.Linq; +using System.Reflection.Emit; +using static MudBlazor.CategoryTypes; +using static OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo; + +namespace OSL_Server.DataReciveClient.Processing.EndGame +{ + public class EndGameInfo + { + private static OSLLogger _logger = new OSLLogger("EndGameInfo"); + public static InfoEndGame infoEndGame = new(); + public static dynamic jsonContentEndOfMatch = null; + public static dynamic jsonContentMatch = null; + public static dynamic jsonContentTimeline = null; + public static void EndGame(string content) + { + infoEndGame = new(); + //Console.WriteLine(content); + jsonContentEndOfMatch = JsonConvert.DeserializeObject(content); + Int64 gameId = jsonContentEndOfMatch.gameId; + string urlMatch = Match_V5.Matches(gameId); + string dataMatch = WebApiRiot.RequestWebApiRiot(urlMatch); + jsonContentMatch = JsonConvert.DeserializeObject(dataMatch); + string urlTimeline = Match_V5.Timeline(gameId); + string dataTimeline = WebApiRiot.RequestWebApiRiot(urlTimeline); + jsonContentTimeline = JsonConvert.DeserializeObject(dataTimeline); + + + //Console.WriteLine(jsonContent.teams); + //foreach (var teams in jsonContent.teams) + //{ + // foreach (var players in teams.players) + // { + // Console.WriteLine("championName " + players.championName); + // Console.WriteLine("ASSISTS " + players.stats.ASSISTS); + // Console.WriteLine("CHAMPIONS_KILLED " + players.stats.CHAMPIONS_KILLED); + // Console.WriteLine("NUM_DEATHS " + players.stats.NUM_DEATHS); + // Console.WriteLine("GOLD_EARNED " + players.stats.GOLD_EARNED); + // Console.WriteLine("LEVEL " + players.stats.LEVEL); + // Console.WriteLine("MINIONS_KILLED " + players.stats.MINIONS_KILLED); + // Console.WriteLine("TOTAL_DAMAGE_DEALT " + players.stats.TOTAL_DAMAGE_DEALT); + // Console.WriteLine("TOTAL_DAMAGE_DEALT_TO_CHAMPIONS " + players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS); + // Console.WriteLine("summonerName " + players.summonerName); + // Console.WriteLine("teamId " + players.teamId); + // } + //} + //Console.WriteLine(jsonContent.gameId); + //foreach (var teams in jsonContentEndOfMatch.teams) + //{ + // foreach (var player in teams.players) + // { + // Stats stats = new(); + // stats.kill = ; + // stats.deaths = ; + // stats.assist = ; + // stats.gold = ; + // stats.level = ; + // stats.farm = ; + // stats.damageDeal = ; + // stats.damageDealToBuildings = ; + // stats.damageDealToChampions = ; + // stats.damageDealToObjectives = ; + // stats.damageDealToTurrets = ; + // stats.trueDamageDealToChampion = ; + // stats.physicalDamageDealToChampion = ; + // stats.magicDamageDealToChampion = ; + // stats.damageSelftMitigated = ; + // stats.heal = ; + // stats.damageTaken = ; + // stats.visionScore = ; + // infoEndGame.summonerInfos.Add(new SummonerInfo() + // { + // teamId = jsonContentEndOfMatch.teamId, + // championName = jsonContentEndOfMatch.championName, + // summonerName = jsonContentEndOfMatch.summonerName, + // championSquarePortraitPath = jsonContentEndOfMatch.championSquarePortraitPath, + // items = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(jsonContentEndOfMatch.items)), + // stats = stats, + // }); + // } + //} + + + + + //Console.WriteLine(jsonContentTimeline.metadata.matchId); + + //int nbDragonKill = 0; + //int HEXTECH_DRAGON = 0; + //int WATER_DRAGON = 0; + //int FIRE_DRAGON = 0; + //int CLOUD_DRAGON = 0; + //int CHEMTECH_DRAGON = 0; + //int MONTAIN_DRAGON = 0; + + //int ELDER_DRAGON = 0; + //int RIFTHERALD = 0; + //int BARON_NASHOR = 0; + //Console.WriteLine(jsonContentTimeline.info.frames[8].events[2].monsterSubType); + //Console.WriteLine(jsonContentTimeline.info.frames[8].events[2].monsterType); + //Console.WriteLine(jsonContentTimeline.info.frames[8].events[0]); + //Console.WriteLine(jsonContentTimeline.info.frames[13].events[3]); + //foreach (var frames in jsonContentTimeline.info.frames) + //{ + // foreach (var events in frames.events) + // { + // //Console.WriteLine(events); + // try + // { + // string monsterSubType = events.monsterSubType; + // string monsterType = events.monsterType; + // //string monsterType = events.monsterType; + // if (monsterSubType != null && monsterSubType.Equals("HEXTECH_DRAGON")) + // { + // HEXTECH_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterSubType != null && monsterSubType.Equals("WATER_DRAGON")) + // { + // WATER_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterSubType != null && monsterSubType.Equals("FIRE_DRAGON")) + // { + // FIRE_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterSubType != null && monsterSubType.Equals("CLOUD_DRAGON")) + // { + // CLOUD_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterSubType != null && monsterSubType.Equals("CHEMTECH_DRAGON")) + // { + // CHEMTECH_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterSubType != null && monsterSubType.Equals("MONTAIN_DRAGON")) + // { + // MONTAIN_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterSubType != null && monsterSubType.Equals("ELDER_DRAGON")) + // { + // ELDER_DRAGON++; + // Console.WriteLine(monsterSubType); + // } + // if (monsterType != null && monsterType.Equals("RIFTHERALD")) + // { + // RIFTHERALD++; + // Console.WriteLine(monsterType); + // } + // if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + // { + // BARON_NASHOR++; + // Console.WriteLine(monsterType); + // } + // } + // catch (Exception e) + // { + // //_logger.log(LoggingLevel.ERROR, "EndGame()", $"{e.Message}"); + // } + // } + //} + //Console.WriteLine("HEXTECH_DRAGON : " + HEXTECH_DRAGON); + //Console.WriteLine("WATER_DRAGON : " + WATER_DRAGON); + //Console.WriteLine("FIRE_DRAGON : " + FIRE_DRAGON); + //Console.WriteLine("CLOUD_DRAGON : " + CLOUD_DRAGON); + //Console.WriteLine("CHEMTECH_DRAGON : " + CHEMTECH_DRAGON); + //Console.WriteLine("MONTAIN_DRAGON : " + MONTAIN_DRAGON); + //Console.WriteLine("ELDER_DRAGON : " + ELDER_DRAGON); + //Console.WriteLine("RIFTHERALD : " + RIFTHERALD); + //Console.WriteLine("BARON_NASHOR : " + BARON_NASHOR); + + //Console.WriteLine(jsonContentTimeline.info.frames[0]); + //Console.WriteLine(JsonConvert.SerializeObject(jsonContentTimeline.info.frames[0])); + //foreach (var events in jsonContentTimeline.info.frames) + //{ + // foreach (var inEvents in events.events) + // { + // Console.WriteLine("##############Avant##############"); + // Console.WriteLine(inEvents); + // Console.WriteLine("##############Après##############"); + // try + // { + // string monsterSubType = inEvents.monsterType; + // if (monsterSubType.Equals("DRAGON")) + // { + // nbDragonKill++; + // } + // Console.WriteLine(events.monsterSubType); + // } + // catch (Exception e) + // { + // //_logger.log(LoggingLevel.ERROR, "EndGame()", $"{e.Message}"); + // } + // } + //} + //Console.WriteLine(nbDragonKill); + } + + public class InfoEndGame + { + public List summonerInfos { get; set; } + public List events { get; set; } + public List bans { get; set; } + public string gameLength { get; set; } + } + + public class SummonerInfo + { + public int teamId { get; set; } + public string championName { get; set; } + public string summonerName { get; set; } + public string championSquarePortraitPath { get; set; } //For id champ + public List items { get; set; } + public Stats stats { get; set; } + } + + public class Stats + { + public int kill { get; set; } + public int deaths { get; set; } + public int assist { get; set; } + public int gold { get; set; } + public int level { get; set; } + public int farm { get; set; } + public int damageDeal { get; set; } + public int damageDealToBuildings { get; set; } + public int damageDealToChampions { get; set; } + public int damageDealToObjectives { get; set; } + public int damageDealToTurrets { get; set; } + public int trueDamageDealToChampion { get; set; } + public int physicalDamageDealToChampion { get; set; } + public int magicDamageDealToChampion { get; set; } + public int damageSelftMitigated { get; set; } + public int heal { get; set; } + public int damageTaken { get; set; } + public int visionScore { get; set; } + } + + public class Events + { + public int killerTeamId { get; set; } + public string monsterSubType { get; set; } + public string monsterType { get; set; } + + } + + public class Bans + { + public int championId { get; set; } + public int pickTurn { get; set; } + } + } +} diff --git a/OSL-Server/DataReciveClient/Processing/InGame/InGameInfo.cs b/OSL-Server/DataReciveClient/Processing/InGame/InGameInfo.cs new file mode 100644 index 0000000..3d8b1e6 --- /dev/null +++ b/OSL-Server/DataReciveClient/Processing/InGame/InGameInfo.cs @@ -0,0 +1,33 @@ +using Newtonsoft.Json; +using OSL_Server.Pages.Runes; + +namespace OSL_Server.DataReciveClient.Processing.InGame +{ + public class InGameInfo + { + private static OSLLogger _logger = new OSLLogger("InGameInfo"); + public static bool firstCall = false; + public static void InGame(string content) + { + //if (firstCall) + //{ + // //_logger.log(LoggingLevel.INFO, "InGame()", $"Content InGame : {content}"); + // dynamic jsonContent = JsonConvert.DeserializeObject(content); + // //foreach (var info in jsonContent) + // //{ + // // Console.WriteLine(info.summonerName); + // //} + // Console.WriteLine(jsonContent[0].summonerName); + // string summonerName = jsonContent[0].summonerName; + // Console.WriteLine(summonerName); + // RunesPage.CreateSummonerPerksList(summonerName); + // firstCall = false; + //} + if (firstCall) + { + RunesPage.CreateSummonerPerksListV2(content); + firstCall = false; + } + } + } +} diff --git a/OSL-Server/DataReciveClient/ReciveFromClient.cs b/OSL-Server/DataReciveClient/ReciveFromClient.cs index f80ea1b..50bc8cd 100644 --- a/OSL-Server/DataReciveClient/ReciveFromClient.cs +++ b/OSL-Server/DataReciveClient/ReciveFromClient.cs @@ -1,5 +1,7 @@ using Newtonsoft.Json; using OSL_Server.DataReciveClient.Processing.ChampSelect; +using OSL_Server.DataReciveClient.Processing.EndGame; +using OSL_Server.DataReciveClient.Processing.InGame; namespace OSL_Server.DataReciveClient { @@ -12,6 +14,8 @@ public class ReciveFromClient private static bool gameFlowPhaseStatus = false; private static bool champSelectStatus = false; + private static bool inGameStatus = false; + private static bool endGameStatus = false; /// /// Read data for set right status /// @@ -23,8 +27,8 @@ public static string ReadData(string content) try { GameFlowPhaseStatus dataJsonRecive = JsonConvert.DeserializeObject(content); - _logger.log(LoggingLevel.INFO, "ReadData()", $"DeserializeObject {content}"); - if (dataJsonRecive.Phase != null) + //_logger.log(LoggingLevel.INFO, "ReadData()", $"DeserializeObject {content}"); + if (dataJsonRecive.Phase != null && dataJsonRecive.Status != null && dataJsonRecive.Date != null) { gameFlowPhaseStatus = true; if (dataJsonRecive.Phase.Equals("ChampSelect")) @@ -41,9 +45,30 @@ public static string ReadData(string content) } else if (dataJsonRecive.Phase.Equals("InGame")) { - returnData = "in game Server running"; + if (dataJsonRecive.Status.Equals("Running")) + { + inGameStatus = true; + InGameInfo.firstCall = true; + returnData = "in game Server running"; + } + else + { + inGameStatus = false; + } + } + else if (dataJsonRecive.Phase.Equals("EndGame")) + { + if (dataJsonRecive.Status.Equals("Running")) + { + endGameStatus = true; + returnData = "end game Server running"; + } + else + { + endGameStatus = false; + } + } } - } else { gameFlowPhaseStatus = false; @@ -57,16 +82,31 @@ public static string ReadData(string content) _logger.log(LoggingLevel.ERROR, "ReadData()", $"Error Read Json GameFlowPhaseStatus {e.Message}"); returnData = "game flow phase Server OFF"; } + _logger.log(LoggingLevel.INFO, "ReadData()", $"gameFlowPhaseStatus : {gameFlowPhaseStatus}"); if (!gameFlowPhaseStatus) { try { //dynamic dataJsonRecive = JsonConvert.DeserializeObject(content); + _logger.log(LoggingLevel.INFO, "ReadData()", $"in gameFlowPhaseStatus inGameStatus : {inGameStatus}"); if (champSelectStatus) { + _logger.log(LoggingLevel.INFO, "ReadData()", $" ChampSelectInfo.InChampSelect(content)"); ChampSelectInfo.InChampSelect(content); returnData = "champ select Server running"; } + if (inGameStatus) + { + _logger.log(LoggingLevel.INFO, "ReadData()", $"InGameInfo.InGame(content)"); + InGameInfo.InGame(content); + returnData = "in game Server running"; + } + if (endGameStatus) + { + _logger.log(LoggingLevel.INFO, "ReadData()", $"EndGameInfo.EndGame(content)"); + EndGameInfo.EndGame(content); + returnData = "end game Server running"; + } } catch (Exception e) { diff --git a/OSL-Server/FileManager/FileManagerLocal.cs b/OSL-Server/FileManager/FileManagerLocal.cs index 8429596..f7599c1 100644 --- a/OSL-Server/FileManager/FileManagerLocal.cs +++ b/OSL-Server/FileManager/FileManagerLocal.cs @@ -217,6 +217,7 @@ public static string CheckExistingDirectoryPatch(string directoryPath) public static string itemsDirectory; public static string summonerSpellsDirectory; public static string perksDirectory; + public static string perksDirectoryWebPath; /// /// Directory Init Data CDragon for save locally @@ -229,6 +230,7 @@ public static void DirectoryInitDataCDragon(string numPatch, string region) itemsDirectory = "./wwwroot/assets/" + numPatch + "/" + region + "/" + "Items" + "/"; summonerSpellsDirectory = "./wwwroot/assets/" + numPatch + "/" + region + "/" + "SummonerSpells" + "/"; perksDirectory = "./wwwroot/assets/" + numPatch + "/" + region + "/" + "Perks" + "/"; + perksDirectoryWebPath = "./assets/" + numPatch + "/" + region + "/" + "Perks" + "/"; CreateDirectory(championDirectory); CreateDirectory(itemsDirectory); CreateDirectory(summonerSpellsDirectory); diff --git a/OSL-Server/OSL-Server.csproj b/OSL-Server/OSL-Server.csproj index e4c8518..efbf001 100644 --- a/OSL-Server/OSL-Server.csproj +++ b/OSL-Server/OSL-Server.csproj @@ -8,9 +8,9 @@ Icone_Eau.ico Sky-csc https://github.com/Sky-CSC/OSL - 0.3.0 - 0.3.0 - 0.3.0-alpha + 1.0.0 + 1.0.0 + 1.0.0 @@ -18,6 +18,9 @@ + + + @@ -28,6 +31,9 @@ PreserveNewest + + + @@ -39,10 +45,6 @@ - - - - True @@ -58,6 +60,10 @@ + + + + diff --git a/OSL-Server/Pages/CDragonPage.razor b/OSL-Server/Pages/CDragonPage.razor index 7d8e654..87e4237 100644 --- a/OSL-Server/Pages/CDragonPage.razor +++ b/OSL-Server/Pages/CDragonPage.razor @@ -24,7 +24,7 @@
- Patch : latest (@CDragon.patch)
- Region : fr_fr@*, en_gb*@ -
(Update with latest version and in fr_fr @*and en_gb*@) +
(Update with latest version and in fr_fr@*and en_gb*@, click on refresh after manual update for see las version and last update information)
@*
diff --git a/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor b/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor new file mode 100644 index 0000000..b189aba --- /dev/null +++ b/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor @@ -0,0 +1,551 @@ +@page "/champselect" +@using OSL_Server.DataLoader.CDragon +@using OSL_Server.DataReciveClient.Processing.ChampSelect +@*@using BlazorColorPicker*@ +@using MudBlazor + +Champ Select +
+
+
+

Champ Select :

+ @{ + LoadTextEnableOrDisableOverlays(); + } +
+ + @if (ChampSelectInfo.session is null) + { +
+

Warning! No Champ Select in progress

+
+ } + else + { +
+

Info! Champ Select available

+
+ } + + This allows you to customize the champion selection overlay +
- Team name +
- Background +
- Summoners Spell +
- Blue/red side background/text/border color +
- Ban backgound color + +
+ @*View1*@ +
+

Champ Select Overlay 1

+ Link Overlay 1 + + +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + @*Backgournd*@ + +
+ + + + + + + + + + + + + + + + + Blue Team Name Color @ChampSelectView1Page.formatingData.BlueTeamNameColor +
Blue Team Subtext Color @ChampSelectView1Page.formatingData.BlueTeamSubtextColor +
Blue Side Texte Color @ChampSelectView1Page.formatingData.BlueSideTexteColor +
Blue Side Backgroud Color @ChampSelectView1Page.formatingData.BlueSideBackgroudColor +
Blue Side Timer Backgroud Color @ChampSelectView1Page.formatingData.BlueSideTimerBackgroudColor +
Blue Side Timer Texte Color @ChampSelectView1Page.formatingData.BlueSideTimerTexteColor +

+ + + + + + + + + + + + + + + + + Red Team Name Color @ChampSelectView1Page.formatingData.RedTeamNameColor +
Red Team Subtext Color @ChampSelectView1Page.formatingData.RedTeamSubtextColor +
Red Side Texte Color @ChampSelectView1Page.formatingData.RedSideTexteColor +
Red Side Backgroud Color @ChampSelectView1Page.formatingData.RedSideBackgroudColor +
Red Side Timer Backgroud Color @ChampSelectView1Page.formatingData.RedSideTimerBackgroudColor +
Red Side Timer Texte Color @ChampSelectView1Page.formatingData.RedSideTimerTexteColor +

Ban Background Color @ChampSelectView1Page.formatingData.BanBackgroundColor +

+
+
+
+ + + +
+
+
+
+
+ @*View2*@ +
+

Champ Select Overlay 2

+ Link Overlay 2 + + +
+

+
+ + + + + + + + + + + + + + + + + + + + +
+ + + + + +
Timer Background @ChampSelectView2Page.formatingData.TimerBackground +
Timer Blue @ChampSelectView2Page.formatingData.TimerBlue +
Timer Red @ChampSelectView2Page.formatingData.TimerRed +

Blue Side Backgroud @ChampSelectView2Page.formatingData.BlueSideBackgroud +
Blue Side Summoner @ChampSelectView2Page.formatingData.BlueSideSummoner +
Blue Side Backgroud Summoner Pick @ChampSelectView2Page.formatingData.BlueSideBackgroudSummonerPick +
Blue Side Backgroud Summoner Pick End @ChampSelectView2Page.formatingData.BlueSideBackgroudSummonerPickEnd +
Blue Side Team Name Color @ChampSelectView2Page.formatingData.BlueSideTeamNameColor +

+ + + + +
+ deg + @ChampSelectView2Page.formatingData.KeystonePickColor1 + + % + @ChampSelectView2Page.formatingData.KeystonePickColor2 + + % + +
+

Red Side Backgroud @ChampSelectView2Page.formatingData.RedSideBackgroud +
Red Side Summoner @ChampSelectView2Page.formatingData.RedSideSummoner +
Red Side Backgroud Summoner Pick @ChampSelectView2Page.formatingData.RedSideBackgroudSummonerPick +
Red Side Backgroud Summoner Pick End @ChampSelectView2Page.formatingData.RedSideBackgroudSummonerPickEnd +
Red Side Team Name Color @ChampSelectView2Page.formatingData.RedSideTeamNameColor +

Ban Background Color @ChampSelectView2Page.formatingData.BanBackgroundColor +

+
+
+
+ + + +
+
+
+
+
+ @*View3*@ +
+

Champ Select Overlay 3

+ Link Overlay 3 + + + +
+

+
+ + + + + + + + + + + + + + + + + + +
+ + + + +
Timer Background @ChampSelectView3Page.formatingData.TimerBackground +
Timer Blue @ChampSelectView3Page.formatingData.TimerBlue +
Timer Red @ChampSelectView3Page.formatingData.TimerRed +

Blue Side Backgroud @ChampSelectView3Page.formatingData.BlueSideBackgroud +
Blue Side Summoner @ChampSelectView3Page.formatingData.BlueSideSummoner +
Blue Side Backgroud Summoner Pick @ChampSelectView3Page.formatingData.BlueSideBackgroudSummonerPick +
Blue Side Backgroud Summoner Pick End @ChampSelectView3Page.formatingData.BlueSideBackgroudSummonerPickEnd +
Blue Side Team Name Color @ChampSelectView3Page.formatingData.BlueSideTeamNameColor +

+ + + + +
+ deg + @ChampSelectView3Page.formatingData.KeystonePickColor1 + + % + @ChampSelectView3Page.formatingData.KeystonePickColor2 + + % + +
+

Red Side Backgroud @ChampSelectView3Page.formatingData.RedSideBackgroud +
Red Side Summoner @ChampSelectView3Page.formatingData.RedSideSummoner +
Red Side Backgroud Summoner Pick @ChampSelectView3Page.formatingData.RedSideBackgroudSummonerPick +
Red Side Backgroud Summoner Pick End @ChampSelectView3Page.formatingData.RedSideBackgroudSummonerPickEnd +
Red Side Team Name Color @ChampSelectView3Page.formatingData.RedSideTeamNameColor +

Ban Background Color @ChampSelectView3Page.formatingData.BanBackgroundColor +

+
+
+
+
+ + + +
+
+
+
+
+ @*View4*@ +
+

Champ Select Overlay 4

+ Link Overlay 4 + + + +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ deg + @ChampSelectView4Page.formatingData.BackgroudGradientColor1 + + % + @ChampSelectView4Page.formatingData.BackgroudGradientColor2 + + % + +
+ + + + +
+
Blue Side Color Text @ChampSelectView4Page.formatingData.BlueSideColorText +
Blue Side Color Sub Text @ChampSelectView4Page.formatingData.BlueSideColorSubText +
Blue Side Color Text Ban @ChampSelectView4Page.formatingData.BlueSideColorTextBan +
Blue Side Color Text Pick @ChampSelectView4Page.formatingData.BlueSideColorTextPick + + + + + + + + + + + + + + + + +
+
Red Side Color Text @ChampSelectView4Page.formatingData.RedSideColorText +
Red Side Color Sub Text @ChampSelectView4Page.formatingData.RedSideColorSubText +
Red Side Color Text Ban @ChampSelectView4Page.formatingData.RedSideColorTextBan +
Red Side Color Text Pick @ChampSelectView4Page.formatingData.RedSideColorTextPick + + + + + + + + + + + + + + + + +

+
+
+
+
+ + + +
+
+
+
+
+
+
+
+@*Liste de patch et de région*@ +@*

+
+

+ Chose Patch and region +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+
+ + +
+

*@ + +@* +
+
*@ +@*
+ + @**@ +@**@ +@**@ +@**@ +@**@ +@* + Options + + + + + + + + + RGB + HSL + HEX + + *@ +@**@ +@**@ +@*
*@ + + + + + + +@code { + public static TextValueOverlayView1 textValueOverlayView1 = new(); + public static TextValueOverlayView2 textValueOverlayView2 = new(); + public static TextValueOverlayView3 textValueOverlayView3 = new(); + public static TextValueOverlayView4 textValueOverlayView4 = new(); + + public bool DisableToolbar { get; set; } = true; + public bool DisableAlpha { get; set; } + public bool DisableColorField { get; set; } + public bool DisablePreview { get; set; } + public bool DisableSliders { get; set; } + public bool DisableInputs { get; set; } + public bool DisableModeSwitch { get; set; } + + public ColorPickerMode ColorPickerMode { get; set; } +} diff --git a/OSL-Server/Pages/ChampSelectPage.razor.cs b/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor.cs similarity index 95% rename from OSL-Server/Pages/ChampSelectPage.razor.cs rename to OSL-Server/Pages/ChampSelect/ChampSelectPage.razor.cs index 73e0bf8..a8ee45a 100644 --- a/OSL-Server/Pages/ChampSelectPage.razor.cs +++ b/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor.cs @@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.ChampSelect { /// /// Champ Select Page @@ -1345,6 +1345,12 @@ public OverlayViewEnableOrDisable() color = ""; } + public OverlayViewEnableOrDisable(string text, string color) + { + this.text = text; + this.color = color; + } + } private OverlayViewEnableOrDisable overlayView1Button = new OverlayViewEnableOrDisable(); @@ -1352,6 +1358,11 @@ public OverlayViewEnableOrDisable() private OverlayViewEnableOrDisable overlayView3Button = new OverlayViewEnableOrDisable(); private OverlayViewEnableOrDisable overlayView4Button = new OverlayViewEnableOrDisable(); + private OverlayViewEnableOrDisable displayContentView1Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView2Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView3Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView4Button = new("display", "#008000"); + /// /// Load text and color enable or disable overlays /// @@ -1428,5 +1439,72 @@ private void TextColorEnableOrDisableOverlayView4() overlayView4Button.color = "#0b849e"; } } + + private string displayContentView1 = "none"; + private void HideOrDisplayContentView1() + { + if (displayContentView1.Equals("none")) + { + displayContentView1Button.text = "hide"; + displayContentView1Button.color = "#be1e37"; + displayContentView1 = "content"; + } + else + { + displayContentView1Button.text = "display"; + displayContentView1Button.color = "#008000"; + displayContentView1 = "none"; + } + } + + private string displayContentView2 = "none"; + private void HideOrDisplayContentView2() + { + if (displayContentView2.Equals("none")) + { + displayContentView2Button.text = "hide"; + displayContentView2Button.color = "#be1e37"; + displayContentView2 = "content"; + } + else + { + displayContentView2Button.text = "display"; + displayContentView2Button.color = "#008000"; + displayContentView2 = "none"; + } + } + private string displayContentView3 = "none"; + private void HideOrDisplayContentView3() + { + if (displayContentView3.Equals("none")) + { + displayContentView3Button.text = "hide"; + displayContentView3Button.color = "#be1e37"; + displayContentView3 = "content"; + } + else + { + displayContentView3Button.text = "display"; + displayContentView3Button.color = "#008000"; + displayContentView3 = "none"; + } + } + + private string displayContentView4 = "none"; + private void HideOrDisplayContentView4() + { + if (displayContentView4.Equals("none")) + { + displayContentView4Button.text = "hide"; + displayContentView4Button.color = "#be1e37"; + displayContentView4 = "content"; + } + else + { + displayContentView4Button.text = "display"; + displayContentView4Button.color = "#008000"; + displayContentView4 = "none"; + } + } } } diff --git a/OSL-Server/Pages/ChampSelectPage.razor.css b/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor.css similarity index 98% rename from OSL-Server/Pages/ChampSelectPage.razor.css rename to OSL-Server/Pages/ChampSelect/ChampSelectPage.razor.css index 8189eeb..2fc0baa 100644 --- a/OSL-Server/Pages/ChampSelectPage.razor.css +++ b/OSL-Server/Pages/ChampSelect/ChampSelectPage.razor.css @@ -14,6 +14,10 @@ html, body { color: white; } +.parent { + overflow: hidden +} + .title { font-family: MyFont; font-weight: bold; diff --git a/OSL-Server/Pages/ChampSelectView1Page.razor b/OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor similarity index 100% rename from OSL-Server/Pages/ChampSelectView1Page.razor rename to OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor diff --git a/OSL-Server/Pages/ChampSelectView1Page.razor.cs b/OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor.cs similarity index 99% rename from OSL-Server/Pages/ChampSelectView1Page.razor.cs rename to OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor.cs index c1fad3a..96513d5 100644 --- a/OSL-Server/Pages/ChampSelectView1Page.razor.cs +++ b/OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor.cs @@ -1,7 +1,7 @@ using OSL_Server.DataReciveClient.Processing.ChampSelect; using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.ChampSelect { /// /// Champ Select View1 Page diff --git a/OSL-Server/Pages/ChampSelectView1Page.razor.css b/OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor.css similarity index 100% rename from OSL-Server/Pages/ChampSelectView1Page.razor.css rename to OSL-Server/Pages/ChampSelect/ChampSelectView1Page.razor.css diff --git a/OSL-Server/Pages/ChampSelectView2Page.razor b/OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor similarity index 100% rename from OSL-Server/Pages/ChampSelectView2Page.razor rename to OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor diff --git a/OSL-Server/Pages/ChampSelectView2Page.razor.cs b/OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor.cs similarity index 99% rename from OSL-Server/Pages/ChampSelectView2Page.razor.cs rename to OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor.cs index 46fbef7..3f303fa 100644 --- a/OSL-Server/Pages/ChampSelectView2Page.razor.cs +++ b/OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor.cs @@ -1,7 +1,7 @@ using OSL_Server.DataReciveClient.Processing.ChampSelect; using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.ChampSelect { /// /// Champ Select View2 Page diff --git a/OSL-Server/Pages/ChampSelectView2Page.razor.css b/OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor.css similarity index 100% rename from OSL-Server/Pages/ChampSelectView2Page.razor.css rename to OSL-Server/Pages/ChampSelect/ChampSelectView2Page.razor.css diff --git a/OSL-Server/Pages/ChampSelectView3Page.razor b/OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor similarity index 100% rename from OSL-Server/Pages/ChampSelectView3Page.razor rename to OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor diff --git a/OSL-Server/Pages/ChampSelectView3Page.razor.cs b/OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor.cs similarity index 99% rename from OSL-Server/Pages/ChampSelectView3Page.razor.cs rename to OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor.cs index 78c69ad..6bb5ea1 100644 --- a/OSL-Server/Pages/ChampSelectView3Page.razor.cs +++ b/OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor.cs @@ -1,7 +1,7 @@ using OSL_Server.DataReciveClient.Processing.ChampSelect; using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.ChampSelect { /// /// Champ Select View3 Page diff --git a/OSL-Server/Pages/ChampSelectView3Page.razor.css b/OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor.css similarity index 100% rename from OSL-Server/Pages/ChampSelectView3Page.razor.css rename to OSL-Server/Pages/ChampSelect/ChampSelectView3Page.razor.css diff --git a/OSL-Server/Pages/ChampSelectView4Page.razor b/OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor similarity index 100% rename from OSL-Server/Pages/ChampSelectView4Page.razor rename to OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor diff --git a/OSL-Server/Pages/ChampSelectView4Page.razor.cs b/OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor.cs similarity index 99% rename from OSL-Server/Pages/ChampSelectView4Page.razor.cs rename to OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor.cs index bcaf019..d2e1a44 100644 --- a/OSL-Server/Pages/ChampSelectView4Page.razor.cs +++ b/OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor.cs @@ -1,7 +1,7 @@ using OSL_Server.DataReciveClient.Processing.ChampSelect; using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.ChampSelect { /// /// Champ Select View4 Page diff --git a/OSL-Server/Pages/ChampSelectView4Page.razor.css b/OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor.css similarity index 100% rename from OSL-Server/Pages/ChampSelectView4Page.razor.css rename to OSL-Server/Pages/ChampSelect/ChampSelectView4Page.razor.css diff --git a/OSL-Server/Pages/ChampSelectPage.razor b/OSL-Server/Pages/ChampSelectPage.razor deleted file mode 100644 index f344c4d..0000000 --- a/OSL-Server/Pages/ChampSelectPage.razor +++ /dev/null @@ -1,521 +0,0 @@ -@page "/champselect" -@using OSL_Server.DataLoader.CDragon -@using OSL_Server.DataReciveClient.Processing.ChampSelect -@*@using BlazorColorPicker*@ -@using MudBlazor - -Champ Select -
-
-
-

Champ Select :

- @{ - LoadTextEnableOrDisableOverlays(); - } -
- - @if (ChampSelectInfo.session is null) - { -
-

Warning! No Champ Select in progress

-
- } - else - { -
-

Info! Champ Select is in progress

-
- } - -
- @*View1*@ -
-

Champ Select Overlay 1

- Link Overlay 1 - -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - @*Backgournd*@ - -
- - - - - - - - - - - - - - - - - Blue Team Name Color @ChampSelectView1Page.formatingData.BlueTeamNameColor -
Blue Team Subtext Color @ChampSelectView1Page.formatingData.BlueTeamSubtextColor -
Blue Side Texte Color @ChampSelectView1Page.formatingData.BlueSideTexteColor -
Blue Side Backgroud Color @ChampSelectView1Page.formatingData.BlueSideBackgroudColor -
Blue Side Timer Backgroud Color @ChampSelectView1Page.formatingData.BlueSideTimerBackgroudColor -
Blue Side Timer Texte Color @ChampSelectView1Page.formatingData.BlueSideTimerTexteColor -

- - - - - - - - - - - - - - - - - Red Team Name Color @ChampSelectView1Page.formatingData.RedTeamNameColor -
Red Team Subtext Color @ChampSelectView1Page.formatingData.RedTeamSubtextColor -
Red Side Texte Color @ChampSelectView1Page.formatingData.RedSideTexteColor -
Red Side Backgroud Color @ChampSelectView1Page.formatingData.RedSideBackgroudColor -
Red Side Timer Backgroud Color @ChampSelectView1Page.formatingData.RedSideTimerBackgroudColor -
Red Side Timer Texte Color @ChampSelectView1Page.formatingData.RedSideTimerTexteColor -

Ban Background Color @ChampSelectView1Page.formatingData.BanBackgroundColor -

-
-
- - - -
-
-
-
-
- @*View2*@ -
-

Champ Select Overlay 2

- Link Overlay 2 - -

-
- - - - - - - - - - - - - - - - - - - - -
- - - - - -
Timer Background @ChampSelectView2Page.formatingData.TimerBackground -
Timer Blue @ChampSelectView2Page.formatingData.TimerBlue -
Timer Red @ChampSelectView2Page.formatingData.TimerRed -

Blue Side Backgroud @ChampSelectView2Page.formatingData.BlueSideBackgroud -
Blue Side Summoner @ChampSelectView2Page.formatingData.BlueSideSummoner -
Blue Side Backgroud Summoner Pick @ChampSelectView2Page.formatingData.BlueSideBackgroudSummonerPick -
Blue Side Backgroud Summoner Pick End @ChampSelectView2Page.formatingData.BlueSideBackgroudSummonerPickEnd -
Blue Side Team Name Color @ChampSelectView2Page.formatingData.BlueSideTeamNameColor -

- - - - -
- deg - @ChampSelectView2Page.formatingData.KeystonePickColor1 - - % - @ChampSelectView2Page.formatingData.KeystonePickColor2 - - % - -
-

Red Side Backgroud @ChampSelectView2Page.formatingData.RedSideBackgroud -
Red Side Summoner @ChampSelectView2Page.formatingData.RedSideSummoner -
Red Side Backgroud Summoner Pick @ChampSelectView2Page.formatingData.RedSideBackgroudSummonerPick -
Red Side Backgroud Summoner Pick End @ChampSelectView2Page.formatingData.RedSideBackgroudSummonerPickEnd -
Red Side Team Name Color @ChampSelectView2Page.formatingData.RedSideTeamNameColor -

Ban Background Color @ChampSelectView2Page.formatingData.BanBackgroundColor -

-
-
- - - -
-
-
-
-
- @*View3*@ -
-

Champ Select Overlay 3

- Link Overlay 3 - - -

-
- - - - - - - - - - - - - - - - - - -
- - - - -
Timer Background @ChampSelectView3Page.formatingData.TimerBackground -
Timer Blue @ChampSelectView3Page.formatingData.TimerBlue -
Timer Red @ChampSelectView3Page.formatingData.TimerRed -

Blue Side Backgroud @ChampSelectView3Page.formatingData.BlueSideBackgroud -
Blue Side Summoner @ChampSelectView3Page.formatingData.BlueSideSummoner -
Blue Side Backgroud Summoner Pick @ChampSelectView3Page.formatingData.BlueSideBackgroudSummonerPick -
Blue Side Backgroud Summoner Pick End @ChampSelectView3Page.formatingData.BlueSideBackgroudSummonerPickEnd -
Blue Side Team Name Color @ChampSelectView3Page.formatingData.BlueSideTeamNameColor -

- - - - -
- deg - @ChampSelectView3Page.formatingData.KeystonePickColor1 - - % - @ChampSelectView3Page.formatingData.KeystonePickColor2 - - % - -
-

Red Side Backgroud @ChampSelectView3Page.formatingData.RedSideBackgroud -
Red Side Summoner @ChampSelectView3Page.formatingData.RedSideSummoner -
Red Side Backgroud Summoner Pick @ChampSelectView3Page.formatingData.RedSideBackgroudSummonerPick -
Red Side Backgroud Summoner Pick End @ChampSelectView3Page.formatingData.RedSideBackgroudSummonerPickEnd -
Red Side Team Name Color @ChampSelectView3Page.formatingData.RedSideTeamNameColor -

Ban Background Color @ChampSelectView3Page.formatingData.BanBackgroundColor -

-
-
-
- - - -
-
-
- - @*View4*@ -
-

Champ Select Overlay 4

- Link Overlay 4 - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- deg - @ChampSelectView4Page.formatingData.BackgroudGradientColor1 - - % - @ChampSelectView4Page.formatingData.BackgroudGradientColor2 - - % - -
- - - - -
-
Blue Side Color Text @ChampSelectView4Page.formatingData.BlueSideColorText -
Blue Side Color Sub Text @ChampSelectView4Page.formatingData.BlueSideColorSubText -
Blue Side Color Text Ban @ChampSelectView4Page.formatingData.BlueSideColorTextBan -
Blue Side Color Text Pick @ChampSelectView4Page.formatingData.BlueSideColorTextPick - - - - - - - - - - - - - - - - -
-
Red Side Color Text @ChampSelectView4Page.formatingData.RedSideColorText -
Red Side Color Sub Text @ChampSelectView4Page.formatingData.RedSideColorSubText -
Red Side Color Text Ban @ChampSelectView4Page.formatingData.RedSideColorTextBan -
Red Side Color Text Pick @ChampSelectView4Page.formatingData.RedSideColorTextPick - - - - - - - - - - - - - - - - -
-
-
- - - -
-
-
-
- -
-
- -@*Liste de patch et de région*@ -@*

-
-

- Chose Patch and region -
- -
- -
- -
- -
- -
- -
- - -
- -
- -
- -
- -
- -
- - -
-
-
- - -
-

*@ - -@* -
-
*@ -@*
- - @**@ -@**@ -@**@ -@**@ -@**@ -@* - Options - - - - - - - - - RGB - HSL - HEX - - *@ -@**@ -@**@ -@*
*@ - - - - - - -@code { - public static TextValueOverlayView1 textValueOverlayView1 = new(); - public static TextValueOverlayView2 textValueOverlayView2 = new(); - public static TextValueOverlayView3 textValueOverlayView3 = new(); - public static TextValueOverlayView4 textValueOverlayView4 = new(); - - public bool DisableToolbar { get; set; } = true; - public bool DisableAlpha { get; set; } - public bool DisableColorField { get; set; } - public bool DisablePreview { get; set; } - public bool DisableSliders { get; set; } - public bool DisableInputs { get; set; } - public bool DisableModeSwitch { get; set; } - - public ColorPickerMode ColorPickerMode { get; set; } -} diff --git a/OSL-Server/Pages/ConfigPage.razor b/OSL-Server/Pages/ConfigPage.razor index b162b74..9cfa926 100644 --- a/OSL-Server/Pages/ConfigPage.razor +++ b/OSL-Server/Pages/ConfigPage.razor @@ -11,100 +11,197 @@

Configuration :


-

Server Configuration :

-
+

Server Configuration :

- +

-
-

Configuration champ select View 1 :

-
- Load configuration file - -
-
- - Generate a configuration file - + +
+

Web riot api key :

+
+
+ + + + + + + + Riot Developer page (take your api key) +
Login and copi past your "Development API Key" +
+
+
-
-

Configuration champ select View 2 :

-
- Load configuration file - -
-
- - Generate a configuration file - + +
+

Configuration champ select :

+
+
+

View 1 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 2 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 3 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 4 :

+ Load configuration file + + + Generate a configuration file + +
+

-
-

Configuration champ select View 3 :

-
- Load configuration file - -
-
- - Generate a configuration file - +
+

Configuration in game :

+
+
+

View 1 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 2 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 3 :

+ Load configuration file + + + Generate a configuration file + +
+

-
-

Configuration champ select View 4 :

-
- Load configuration file - -
-
- - Generate a configuration file - -

-
-

Configuration in game View 1 :

-
- Load configuration file - -
-
- - Generate a configuration file - +
+

Configuration end game :

+
+
+

View 1 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 2 :

+ Load configuration file + + + Generate a configuration file + +
+
+

View 3 :

+ Load configuration file + + + Generate a configuration file + +
+

-
-

Configuration in game View 2 :

-
- Load configuration file - -
-
- - Generate a configuration file - -

-
-

Configuration in game View 3 :

-
- Load configuration file - -
-
- - Generate a configuration file - +
+

Configuration runes :

+
+
+

Adc :

+ Load configuration file + + + Generate a configuration file + +
+
+

Adc and Support :

+ Load configuration file + + + Generate a configuration file + +
+
+

Jungle :

+ Load configuration file + + + Generate a configuration file + +
+
+

Mid :

+ Load configuration file + + + Generate a configuration file + +
+
+

Support :

+ Load configuration file + + + Generate a configuration file + +
+
+

Top :

+ Load configuration file + + + Generate a configuration file + +
+
+

All :

+ Load configuration file + + + Generate a configuration file + +
+


diff --git a/OSL-Server/Pages/ConfigPage.razor.cs b/OSL-Server/Pages/ConfigPage.razor.cs index 3e7fb81..a85e7eb 100644 --- a/OSL-Server/Pages/ConfigPage.razor.cs +++ b/OSL-Server/Pages/ConfigPage.razor.cs @@ -2,6 +2,12 @@ using Microsoft.AspNetCore.Components.Forms; using System.ComponentModel.DataAnnotations; using OSL_Server.FileManager; +using OSL_Server.Pages.ChampSelect; +using OSL_Server.Pages.InGame; +using OSL_Server.Pages.Runes; +using OSL_Server.Pages.EndGame; +using System.Net.Http.Json; +using OSL_Server.DataLoader.WebApiRiot; namespace OSL_Server.Pages { @@ -18,6 +24,16 @@ public class ConfigOverlayText [Required] [Range(0, 65535, ErrorMessage = "Accommodation invalid (1-65535).")] public int Port { get; set; } = 45678; + + [Required] + [StringLength(42, MinimumLength = 42, ErrorMessage = "API key is incorect (42 character).")] + public string WebRiotApiKey { get; set; } + } + + public static void WebRiotApiKeySubmit() + { + WebApiRiot.apiKey = OverlayText.WebRiotApiKey; + _logger.log(LoggingLevel.INFO, "WebRiotApiKeySubmit()", $"Web riot api key change : {WebApiRiot.apiKey}"); } private async Task LoadFiles(InputFileChangeEventArgs e) @@ -371,11 +387,537 @@ private async Task LoadFileInGameView3() fileSelected = null; StateHasChanged(); - _logger.log(LoggingLevel.INFO, "LoadFileInGameView3()", "Configuration View3 Loaded"); + _logger.log(LoggingLevel.INFO, "LoadFileInGameView3()", "Configuration In game View3 Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileInGameView3()", "Load In game view 3 error : " + e.Message); + } + } + } + + private async Task LoadFileEndGameView1() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //EndGameView1Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //EndGameView1Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView1Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + EndGameView1Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView1Page.formatingData.BackgroundColor = jsonContent.BackgroundColor; + EndGameView1Page.formatingData.BackgroundColorDeg = jsonContent.BackgroundColorDeg; + EndGameView1Page.formatingData.BackgroundColorColor1 = jsonContent.BackgroundColorColor1; + EndGameView1Page.formatingData.BackgroundColorPercent1 = jsonContent.BackgroundColorPercent1; + EndGameView1Page.formatingData.BackgroundColorColor2 = jsonContent.BackgroundColorColor2; + EndGameView1Page.formatingData.BackgroundColorPercent2 = jsonContent.BackgroundColorPercent2; + EndGameView1Page.formatingData.TopBarBackgroundColor = jsonContent.TopBarBackgroundColor; + EndGameView1Page.formatingData.TopBarBackgroundColorDeg = jsonContent.TopBarBackgroundColorDeg; + EndGameView1Page.formatingData.TopBarBackgroundColorColor1 = jsonContent.TopBarBackgroundColorColor1; + EndGameView1Page.formatingData.TopBarBackgroundColorPercent1 = jsonContent.TopBarBackgroundColorPercent1; + EndGameView1Page.formatingData.TopBarBackgroundColorColor2 = jsonContent.TopBarBackgroundColorColor2; + EndGameView1Page.formatingData.TopBarBackgroundColorPercent2 = jsonContent.TopBarBackgroundColorPercent2; + EndGameView1Page.formatingData.TopBarGradiant = jsonContent.TopBarGradiant; + EndGameView1Page.formatingData.TopBarBorderColor = jsonContent.TopBarBorderColor; + EndGameView1Page.formatingData.TopBarTimerText = jsonContent.TopBarTimerText; + EndGameView1Page.formatingData.TopBarTimerTextColor = jsonContent.TopBarTimerTextColor; + EndGameView1Page.formatingData.TopBarTimerColor = jsonContent.TopBarTimerColor; + EndGameView1Page.formatingData.TopBarBlueTeamName = jsonContent.TopBarBlueTeamName; + EndGameView1Page.formatingData.TopBarBlueTeamNameColor = jsonContent.TopBarBlueTeamNameColor; + EndGameView1Page.formatingData.TopBarRedTeamName = jsonContent.TopBarRedTeamName; + EndGameView1Page.formatingData.TopBarRedTeamNameColor = jsonContent.TopBarRedTeamNameColor; + EndGameView1Page.formatingData.ChampionInfoBackgroundColor = jsonContent.ChampionInfoBackgroundColor; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg = jsonContent.ChampionInfoBackgroundColorDeg; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1 = jsonContent.ChampionInfoBackgroundColorColor1; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1 = jsonContent.ChampionInfoBackgroundColorPercent1; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2 = jsonContent.ChampionInfoBackgroundColorColor2; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2 = jsonContent.ChampionInfoBackgroundColorPercent2; + EndGameView1Page.formatingData.ChampionInfoGradiant = jsonContent.ChampionInfoGradiant; + EndGameView1Page.formatingData.ChampionInfoBorderColor = jsonContent.ChampionInfoBorderColor; + EndGameView1Page.formatingData.ChampionInfoText = jsonContent.ChampionInfoText; + EndGameView1Page.formatingData.ChampionInfoTextColor = jsonContent.ChampionInfoTextColor; + EndGameView1Page.formatingData.ChampionInfoBlueBarColor = jsonContent.ChampionInfoBlueBarColor; + EndGameView1Page.formatingData.ChampionInfoRedBarColor = jsonContent.ChampionInfoRedBarColor; + EndGameView1Page.formatingData.ChampionInfoBlueDegaTextColor = jsonContent.ChampionInfoBlueDegaTextColor; + EndGameView1Page.formatingData.ChampionInfoRedDegaTextColor = jsonContent.ChampionInfoRedDegaTextColor; + EndGameView1Page.formatingData.BansBackgroundColor = jsonContent.BansBackgroundColor; + EndGameView1Page.formatingData.BansBackgroundColorDeg = jsonContent.BansBackgroundColorDeg; + EndGameView1Page.formatingData.BansBackgroundColorColor1 = jsonContent.BansBackgroundColorColor1; + EndGameView1Page.formatingData.BansBackgroundColorPercent1 = jsonContent.BansBackgroundColorPercent1; + EndGameView1Page.formatingData.BansBackgroundColorColor2 = jsonContent.BansBackgroundColorColor2; + EndGameView1Page.formatingData.BansBackgroundColorPercent2 = jsonContent.BansBackgroundColorPercent2; + EndGameView1Page.formatingData.BansGradiant = jsonContent.BansGradiant; + EndGameView1Page.formatingData.BansBorderColor = jsonContent.BansBorderColor; + EndGameView1Page.formatingData.BansTextColor = jsonContent.BansTextColor; + EndGameView1Page.formatingData.GlobalStatsBackgroundColor = jsonContent.GlobalStatsBackgroundColor; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorDeg = jsonContent.GlobalStatsBackgroundColorDeg; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1 = jsonContent.GlobalStatsBackgroundColorColor1; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1 = jsonContent.GlobalStatsBackgroundColorPercent1; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2 = jsonContent.GlobalStatsBackgroundColorColor2; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2 = jsonContent.GlobalStatsBackgroundColorPercent2; + EndGameView1Page.formatingData.GlobalStatsGradiant = jsonContent.GlobalStatsGradiant; + EndGameView1Page.formatingData.GlobalStatsBorderColor = jsonContent.GlobalStatsBorderColor; + EndGameView1Page.formatingData.GlobalStatsTextColor = jsonContent.GlobalStatsTextColor; + EndGameView1Page.formatingData.GlobalStatsBlueTextColor = jsonContent.GlobalStatsBlueTextColor; + EndGameView1Page.formatingData.GlobalStatsRedTextColor = jsonContent.GlobalStatsRedTextColor; + EndGameView1Page.formatingData.GoldDiffBackgroundColor = jsonContent.GoldDiffBackgroundColor; + EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg = jsonContent.GoldDiffBackgroundColorDeg; + EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1 = jsonContent.GoldDiffBackgroundColorColor1; + EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1 = jsonContent.GoldDiffBackgroundColorPercent1; + EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2 = jsonContent.GoldDiffBackgroundColorColor2; + EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2 = jsonContent.GoldDiffBackgroundColorPercent2; + EndGameView1Page.formatingData.GoldDiffGradiant = jsonContent.GoldDiffGradiant; + EndGameView1Page.formatingData.GoldDiffBorderColor = jsonContent.GoldDiffBorderColor; + EndGameView1Page.formatingData.GoldDiffText = jsonContent.GoldDiffText; + EndGameView1Page.formatingData.GoldDiffTextColor = jsonContent.GoldDiffTextColor; + EndGameView1Page.formatingData.GoldDiffBlueTextGoldColor = jsonContent.GoldDiffBlueTextGoldColor; + EndGameView1Page.formatingData.GoldDiffRedTextGoldColor = jsonContent.GoldDiffRedTextGoldColor; + EndGameView1Page.formatingData.GoldDiffZeroTextGoldColor = jsonContent.GoldDiffZeroTextGoldColor; + EndGameView1Page.formatingData.GoldDiffBluePointGoldColor = jsonContent.GoldDiffBluePointGoldColor; + EndGameView1Page.formatingData.GoldDiffRedPointGoldColor = jsonContent.GoldDiffRedPointGoldColor; + EndGameView1Page.formatingData.GoldDiffZeroPointGoldColor = jsonContent.GoldDiffZeroPointGoldColor; + EndGameView1Page.formatingData.GoldDiffStartEndPointGoldColor = jsonContent.GoldDiffStartEndPointGoldColor; + EndGameView1Page.formatingData.GoldDiffLinkPointGoldColor = jsonContent.GoldDiffLinkPointGoldColor; + EndGameView1Page.formatingData.GoldDiffBarColor = jsonContent.GoldDiffBarColor; + + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileEndGameView3()", "Configuration End game View1 Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileEndGameView3()", "Load end game View1 error : " + e.Message); + } + } + } + + private async Task LoadFileEndGameView2() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //EndGameView2Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //EndGameView2Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView2Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + EndGameView2Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView2Page.formatingData.BackgroundColor = jsonContent.BackgroundColor; + EndGameView2Page.formatingData.BackgroundColorDeg = jsonContent.BackgroundColorDeg; + EndGameView2Page.formatingData.BackgroundColorColor1 = jsonContent.BackgroundColorColor1; + EndGameView2Page.formatingData.BackgroundColorPercent1 = jsonContent.BackgroundColorPercent1; + EndGameView2Page.formatingData.BackgroundColorColor2 = jsonContent.BackgroundColorColor2; + EndGameView2Page.formatingData.BackgroundColorPercent2 = jsonContent.BackgroundColorPercent2; + EndGameView2Page.formatingData.TopBarBackgroundColor = jsonContent.TopBarBackgroundColor; + EndGameView2Page.formatingData.TopBarBackgroundColorDeg = jsonContent.TopBarBackgroundColorDeg; + EndGameView2Page.formatingData.TopBarBackgroundColorColor1 = jsonContent.TopBarBackgroundColorColor1; + EndGameView2Page.formatingData.TopBarBackgroundColorPercent1 = jsonContent.TopBarBackgroundColorPercent1; + EndGameView2Page.formatingData.TopBarBackgroundColorColor2 = jsonContent.TopBarBackgroundColorColor2; + EndGameView2Page.formatingData.TopBarBackgroundColorPercent2 = jsonContent.TopBarBackgroundColorPercent2; + EndGameView2Page.formatingData.TopBarGradiant = jsonContent.TopBarGradiant; + EndGameView2Page.formatingData.TopBarBorderColor = jsonContent.TopBarBorderColor; + EndGameView2Page.formatingData.TopBarTimerText = jsonContent.TopBarTimerText; + EndGameView2Page.formatingData.TopBarTimerTextColor = jsonContent.TopBarTimerTextColor; + EndGameView2Page.formatingData.TopBarTimerColor = jsonContent.TopBarTimerColor; + EndGameView2Page.formatingData.TopBarBlueTeamName = jsonContent.TopBarBlueTeamName; + EndGameView2Page.formatingData.TopBarBlueTeamNameColor = jsonContent.TopBarBlueTeamNameColor; + EndGameView2Page.formatingData.TopBarRedTeamName = jsonContent.TopBarRedTeamName; + EndGameView2Page.formatingData.TopBarRedTeamNameColor = jsonContent.TopBarRedTeamNameColor; + EndGameView2Page.formatingData.ChampionInfoBackgroundColor = jsonContent.ChampionInfoBackgroundColor; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg = jsonContent.ChampionInfoBackgroundColorDeg; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1 = jsonContent.ChampionInfoBackgroundColorColor1; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1 = jsonContent.ChampionInfoBackgroundColorPercent1; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2 = jsonContent.ChampionInfoBackgroundColorColor2; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2 = jsonContent.ChampionInfoBackgroundColorPercent2; + EndGameView2Page.formatingData.ChampionInfoGradiant = jsonContent.ChampionInfoGradiant; + EndGameView2Page.formatingData.ChampionInfoBorderColor = jsonContent.ChampionInfoBorderColor; + EndGameView2Page.formatingData.ChampionInfoText = jsonContent.ChampionInfoText; + EndGameView2Page.formatingData.ChampionInfoTextColor = jsonContent.ChampionInfoTextColor; + EndGameView2Page.formatingData.ChampionInfoBlueBarColor = jsonContent.ChampionInfoBlueBarColor; + EndGameView2Page.formatingData.ChampionInfoRedBarColor = jsonContent.ChampionInfoRedBarColor; + EndGameView2Page.formatingData.ChampionInfoBlueDegaTextColor = jsonContent.ChampionInfoBlueDegaTextColor; + EndGameView2Page.formatingData.ChampionInfoRedDegaTextColor = jsonContent.ChampionInfoRedDegaTextColor; + EndGameView2Page.formatingData.BansBackgroundColor = jsonContent.BansBackgroundColor; + EndGameView2Page.formatingData.BansBackgroundColorDeg = jsonContent.BansBackgroundColorDeg; + EndGameView2Page.formatingData.BansBackgroundColorColor1 = jsonContent.BansBackgroundColorColor1; + EndGameView2Page.formatingData.BansBackgroundColorPercent1 = jsonContent.BansBackgroundColorPercent1; + EndGameView2Page.formatingData.BansBackgroundColorColor2 = jsonContent.BansBackgroundColorColor2; + EndGameView2Page.formatingData.BansBackgroundColorPercent2 = jsonContent.BansBackgroundColorPercent2; + EndGameView2Page.formatingData.BansGradiant = jsonContent.BansGradiant; + EndGameView2Page.formatingData.BansBorderColor = jsonContent.BansBorderColor; + EndGameView2Page.formatingData.BansTextColor = jsonContent.BansTextColor; + EndGameView2Page.formatingData.GlobalStatsBackgroundColor = jsonContent.GlobalStatsBackgroundColor; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorDeg = jsonContent.GlobalStatsBackgroundColorDeg; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1 = jsonContent.GlobalStatsBackgroundColorColor1; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1 = jsonContent.GlobalStatsBackgroundColorPercent1; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2 = jsonContent.GlobalStatsBackgroundColorColor2; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2 = jsonContent.GlobalStatsBackgroundColorPercent2; + EndGameView2Page.formatingData.GlobalStatsGradiant = jsonContent.GlobalStatsGradiant; + EndGameView2Page.formatingData.GlobalStatsBorderColor = jsonContent.GlobalStatsBorderColor; + EndGameView2Page.formatingData.GlobalStatsTextColor = jsonContent.GlobalStatsTextColor; + EndGameView2Page.formatingData.GlobalStatsBlueTextColor = jsonContent.GlobalStatsBlueTextColor; + EndGameView2Page.formatingData.GlobalStatsRedTextColor = jsonContent.GlobalStatsRedTextColor; + EndGameView2Page.formatingData.GoldDiffBackgroundColor = jsonContent.GoldDiffBackgroundColor; + EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg = jsonContent.GoldDiffBackgroundColorDeg; + EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1 = jsonContent.GoldDiffBackgroundColorColor1; + EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1 = jsonContent.GoldDiffBackgroundColorPercent1; + EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2 = jsonContent.GoldDiffBackgroundColorColor2; + EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2 = jsonContent.GoldDiffBackgroundColorPercent2; + EndGameView2Page.formatingData.GoldDiffGradiant = jsonContent.GoldDiffGradiant; + EndGameView2Page.formatingData.GoldDiffBorderColor = jsonContent.GoldDiffBorderColor; + EndGameView2Page.formatingData.GoldDiffText = jsonContent.GoldDiffText; + EndGameView2Page.formatingData.GoldDiffTextColor = jsonContent.GoldDiffTextColor; + + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileEndGameView2()", "Configuration End game View2 Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileEndGameView2()", "Load end game View2 error : " + e.Message); + } + } + } + + private async Task LoadFileEndGameView3() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //EndGameView3Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //EndGameView3Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView3Page.formatingData.DefaultPatch = jsonContent.DefaultPatch; + EndGameView3Page.formatingData.DefaultRegion = jsonContent.DefaultRegion; + EndGameView3Page.formatingData.BackgroundColor = jsonContent.BackgroundColor; + EndGameView3Page.formatingData.BackgroundColorDeg = jsonContent.BackgroundColorDeg; + EndGameView3Page.formatingData.BackgroundColorColor1 = jsonContent.BackgroundColorColor1; + EndGameView3Page.formatingData.BackgroundColorPercent1 = jsonContent.BackgroundColorPercent1; + EndGameView3Page.formatingData.BackgroundColorColor2 = jsonContent.BackgroundColorColor2; + EndGameView3Page.formatingData.BackgroundColorPercent2 = jsonContent.BackgroundColorPercent2; + EndGameView3Page.formatingData.TopBarBackgroundColor = jsonContent.TopBarBackgroundColor; + EndGameView3Page.formatingData.TopBarBackgroundColorDeg = jsonContent.TopBarBackgroundColorDeg; + EndGameView3Page.formatingData.TopBarBackgroundColorColor1 = jsonContent.TopBarBackgroundColorColor1; + EndGameView3Page.formatingData.TopBarBackgroundColorPercent1 = jsonContent.TopBarBackgroundColorPercent1; + EndGameView3Page.formatingData.TopBarBackgroundColorColor2 = jsonContent.TopBarBackgroundColorColor2; + EndGameView3Page.formatingData.TopBarBackgroundColorPercent2 = jsonContent.TopBarBackgroundColorPercent2; + EndGameView3Page.formatingData.TopBarGradiant = jsonContent.TopBarGradiant; + EndGameView3Page.formatingData.TopBarBorderColor = jsonContent.TopBarBorderColor; + EndGameView3Page.formatingData.TopBarTimerText = jsonContent.TopBarTimerText; + EndGameView3Page.formatingData.TopBarTimerTextColor = jsonContent.TopBarTimerTextColor; + EndGameView3Page.formatingData.TopBarTimerColor = jsonContent.TopBarTimerColor; + EndGameView3Page.formatingData.TopBarBlueTeamName = jsonContent.TopBarBlueTeamName; + EndGameView3Page.formatingData.TopBarBlueTeamNameColor = jsonContent.TopBarBlueTeamNameColor; + EndGameView3Page.formatingData.TopBarRedTeamName = jsonContent.TopBarRedTeamName; + EndGameView3Page.formatingData.TopBarRedTeamNameColor = jsonContent.TopBarRedTeamNameColor; + EndGameView3Page.formatingData.ChampionInfoBackgroundColor = jsonContent.ChampionInfoBackgroundColor; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg = jsonContent.ChampionInfoBackgroundColorDeg; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1 = jsonContent.ChampionInfoBackgroundColorColor1; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1 = jsonContent.ChampionInfoBackgroundColorPercent1; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2 = jsonContent.ChampionInfoBackgroundColorColor2; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2 = jsonContent.ChampionInfoBackgroundColorPercent2; + EndGameView3Page.formatingData.ChampionInfoGradiant = jsonContent.ChampionInfoGradiant; + EndGameView3Page.formatingData.ChampionInfoBorderColor = jsonContent.ChampionInfoBorderColor; + EndGameView3Page.formatingData.ChampionInfoText = jsonContent.ChampionInfoText; + EndGameView3Page.formatingData.ChampionInfoTextColor = jsonContent.ChampionInfoTextColor; + EndGameView3Page.formatingData.ChampionInfoBlueBarColor = jsonContent.ChampionInfoBlueBarColor; + EndGameView3Page.formatingData.ChampionInfoRedBarColor = jsonContent.ChampionInfoRedBarColor; + EndGameView3Page.formatingData.ChampionInfoBlueDegaTextColor = jsonContent.ChampionInfoBlueDegaTextColor; + EndGameView3Page.formatingData.ChampionInfoRedDegaTextColor = jsonContent.ChampionInfoRedDegaTextColor; + EndGameView3Page.formatingData.BansBackgroundColor = jsonContent.BansBackgroundColor; + EndGameView3Page.formatingData.BansBackgroundColorDeg = jsonContent.BansBackgroundColorDeg; + EndGameView3Page.formatingData.BansBackgroundColorColor1 = jsonContent.BansBackgroundColorColor1; + EndGameView3Page.formatingData.BansBackgroundColorPercent1 = jsonContent.BansBackgroundColorPercent1; + EndGameView3Page.formatingData.BansBackgroundColorColor2 = jsonContent.BansBackgroundColorColor2; + EndGameView3Page.formatingData.BansBackgroundColorPercent2 = jsonContent.BansBackgroundColorPercent2; + EndGameView3Page.formatingData.BansGradiant = jsonContent.BansGradiant; + EndGameView3Page.formatingData.BansBorderColor = jsonContent.BansBorderColor; + EndGameView3Page.formatingData.BansTextColor = jsonContent.BansTextColor; + EndGameView3Page.formatingData.GlobalStatsBackgroundColor = jsonContent.GlobalStatsBackgroundColor; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorDeg = jsonContent.GlobalStatsBackgroundColorDeg; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1 = jsonContent.GlobalStatsBackgroundColorColor1; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1 = jsonContent.GlobalStatsBackgroundColorPercent1; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2 = jsonContent.GlobalStatsBackgroundColorColor2; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2 = jsonContent.GlobalStatsBackgroundColorPercent2; + EndGameView3Page.formatingData.GlobalStatsGradiant = jsonContent.GlobalStatsGradiant; + EndGameView3Page.formatingData.GlobalStatsBorderColor = jsonContent.GlobalStatsBorderColor; + EndGameView3Page.formatingData.GlobalStatsSeparationColor = jsonContent.GlobalStatsSeparationColor; + EndGameView3Page.formatingData.GlobalStatsTextColor = jsonContent.GlobalStatsTextColor; + EndGameView3Page.formatingData.GlobalStatsBlueTextColor = jsonContent.GlobalStatsBlueTextColor; + EndGameView3Page.formatingData.GlobalStatsRedTextColor = jsonContent.GlobalStatsRedTextColor; + EndGameView3Page.formatingData.GoldDiffBackgroundColor = jsonContent.GoldDiffBackgroundColor; + EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg = jsonContent.GoldDiffBackgroundColorDeg; + EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1 = jsonContent.GoldDiffBackgroundColorColor1; + EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1 = jsonContent.GoldDiffBackgroundColorPercent1; + EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2 = jsonContent.GoldDiffBackgroundColorColor2; + EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2 = jsonContent.GoldDiffBackgroundColorPercent2; + EndGameView3Page.formatingData.GoldDiffGradiant = jsonContent.GoldDiffGradiant; + EndGameView3Page.formatingData.GoldDiffBorderColor = jsonContent.GoldDiffBorderColor; + EndGameView3Page.formatingData.GoldDiffText = jsonContent.GoldDiffText; + EndGameView3Page.formatingData.GoldDiffTextColor = jsonContent.GoldDiffTextColor; + + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileEndGameView3()", "Configuration End game View3 Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileEndGameView3()", "Load end game View3 error : " + e.Message); + } + } + } + + private async Task LoadFileRunesAdc() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesAdcPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesAdcPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesAdcPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesAdcPage.formatingData.BackgroudGradientDeg = jsonContent.BackgroudGradientDeg; + RunesAdcPage.formatingData.BackgroudGradientColor1 = jsonContent.BackgroudGradientColor1; + RunesAdcPage.formatingData.BackgroudGradientPercent1 = jsonContent.BackgroudGradientPercent1; + RunesAdcPage.formatingData.BackgroudGradientColor2 = jsonContent.BackgroudGradientColor2; + RunesAdcPage.formatingData.BackgroudGradientPercent2 = jsonContent.BackgroudGradientPercent2; + RunesAdcPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesAdcPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesAdcPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesAdcPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesAdcPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesAdcPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesAdcPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesAdcPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesAdcPage.formatingData.LanePicture = jsonContent.LanePicture; + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesAdc()", "Configuration Runes Adc Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileRunesAdc()", "Load Runes Adc error : " + e.Message); + } + } + } + private async Task LoadFileRunesAdcSupp() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesAdcSuppPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesAdcSuppPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesAdcSuppPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesAdcSuppPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesAdcSuppPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesAdcSuppPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesAdcSuppPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesAdcSuppPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesAdcSuppPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesAdcSuppPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesAdcSuppPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesAdcSuppPage.formatingData.LanePictureAdc = jsonContent.LanePictureAdc; + RunesAdcSuppPage.formatingData.LanePictureSupp = jsonContent.LanePictureSupp; + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesAdcSupp()", "Configuration Runes AdcSupp Loaded"); } catch (Exception e) { - _logger.log(LoggingLevel.ERROR, "LoadFileInGameView3()", "Load view 1 error : " + e.Message); + _logger.log(LoggingLevel.ERROR, "LoadFileRunesAdcSupp()", "Load Runes AdcSupp error : " + e.Message); + } + } + } + private async Task LoadFileRunesJungle() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesJunglePage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesJunglePage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesJunglePage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesJunglePage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesJunglePage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesJunglePage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesJunglePage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesJunglePage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesJunglePage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesJunglePage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesJunglePage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesJunglePage.formatingData.LanePicture = jsonContent.LanePicture; + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesJungle()", "Configuration Runes Jungle Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileRunesJungle()", "Load Runes Jungle error : " + e.Message); + } + } + } + private async Task LoadFileRunesMid() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesMidPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesMidPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesMidPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesMidPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesMidPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesMidPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesMidPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesMidPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesMidPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesMidPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesMidPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesMidPage.formatingData.LanePicture = jsonContent.LanePicture; + + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesMid()", "Configuration Runes Mid Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileRunesMid()", "Load Runes Mid error : " + e.Message); + } + } + } + private async Task LoadFileRunesSupp() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesSuppPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesSuppPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesSuppPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesSuppPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesSuppPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesSuppPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesSuppPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesSuppPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesSuppPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesSuppPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesSuppPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesSuppPage.formatingData.LanePicture = jsonContent.LanePicture; + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesSupp()", "Configuration Runes Supp Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileRunesSupp()", "Load Runes Supp error : " + e.Message); + } + } + } + private async Task LoadFileRunesTop() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesTopPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesTopPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesTopPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesTopPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesTopPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesTopPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesTopPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesTopPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesTopPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesTopPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesTopPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesTopPage.formatingData.LanePicture = jsonContent.LanePicture; + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesTop()", "Configuration Runes Top Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileRunesTop()", "Load Runes Top error : " + e.Message); + } + } + } + + private async Task LoadFileRunesAll() + { + if (fileSelected is not null) + { + try + { + MemoryStream ms = new MemoryStream(); + await fileSelected.OpenReadStream().CopyToAsync(ms); + string content = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + dynamic jsonContent = JsonConvert.DeserializeObject(content); + //RunesAllPage.formatingData.DefaultPatch = jsonContent.DefaultPatch; + //RunesAllPage.formatingData.DefaultRegion = jsonContent.DefaultRegion; + RunesAllPage.formatingData.BackgroudGradient = jsonContent.BackgroudGradient; + RunesAllPage.formatingData.OverlayColorBackgroudGradient = jsonContent.OverlayColorBackgroudGradient; + RunesAllPage.formatingData.BlueSideColorTextSummoner = jsonContent.BlueSideColorTextSummoner; + RunesAllPage.formatingData.RedSideColorTextSummoner = jsonContent.RedSideColorTextSummoner; + RunesAllPage.formatingData.BlueSideColorBorderChampion = jsonContent.BlueSideColorBorderChampion; + RunesAllPage.formatingData.RedSideColorBorderChampion = jsonContent.RedSideColorBorderChampion; + RunesAllPage.formatingData.BlueSideColorSeparationBar = jsonContent.BlueSideColorSeparationBar; + RunesAllPage.formatingData.RedSideColorSeparationBar = jsonContent.RedSideColorSeparationBar; + RunesAllPage.formatingData.BakgroundPicture = jsonContent.BakgroundPicture; + RunesAllPage.formatingData.LanePictureAdc = jsonContent.LanePictureAdc; + RunesAllPage.formatingData.LanePictureSupp = jsonContent.LanePictureSupp; + RunesAllPage.formatingData.LanePictureTop = jsonContent.LanePictureTop; + RunesAllPage.formatingData.LanePictureMid = jsonContent.LanePictureMid; + RunesAllPage.formatingData.LanePictureJungle = jsonContent.LanePictureJungle; + fileSelected = null; + StateHasChanged(); + _logger.log(LoggingLevel.INFO, "LoadFileRunesAll()", "Configuration Runes all Loaded"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "LoadFileRunesAll()", "Load Runes all error : " + e.Message); } } } @@ -677,8 +1219,8 @@ private string GenerateConfigFileInGameView3() { var data = new InGameView3Page.FormatingData { - DefaultPatch = InGameView2Page.formatingData.DefaultPatch, - DefaultRegion = InGameView2Page.formatingData.DefaultRegion, + DefaultPatch = InGameView3Page.formatingData.DefaultPatch, + DefaultRegion = InGameView3Page.formatingData.DefaultRegion, ReplayInfoFrame = InGameView3Page.formatingData.ReplayInfoFrame, BluePlayerFrame = InGameView3Page.formatingData.BluePlayerFrame, RedPlayerFrame = InGameView3Page.formatingData.RedPlayerFrame, @@ -699,5 +1241,543 @@ private string GenerateConfigFileInGameView3() return "/assets/ingame/configInGameView3.json"; } } + + private string GenerateConfigFileEndGameView1() + { + try + { + var data = new EndGameView1Page.FormatingData + { + DefaultPatch = EndGameView1Page.formatingData.DefaultPatch, + DefaultRegion = EndGameView1Page.formatingData.DefaultRegion, + BackgroundColor = EndGameView1Page.formatingData.BackgroundColor, + BackgroundColorDeg = EndGameView1Page.formatingData.BackgroundColorDeg, + BackgroundColorColor1 = EndGameView1Page.formatingData.BackgroundColorColor1, + BackgroundColorPercent1 = EndGameView1Page.formatingData.BackgroundColorPercent1, + BackgroundColorColor2 = EndGameView1Page.formatingData.BackgroundColorColor2, + BackgroundColorPercent2 = EndGameView1Page.formatingData.BackgroundColorPercent2, + TopBarBackgroundColor = EndGameView1Page.formatingData.TopBarBackgroundColor, + TopBarBackgroundColorDeg = EndGameView1Page.formatingData.TopBarBackgroundColorDeg, + TopBarBackgroundColorColor1 = EndGameView1Page.formatingData.TopBarBackgroundColorColor1, + TopBarBackgroundColorPercent1 = EndGameView1Page.formatingData.TopBarBackgroundColorPercent1, + TopBarBackgroundColorColor2 = EndGameView1Page.formatingData.TopBarBackgroundColorColor2, + TopBarBackgroundColorPercent2 = EndGameView1Page.formatingData.TopBarBackgroundColorPercent2, + TopBarGradiant = EndGameView1Page.formatingData.TopBarGradiant, + TopBarBorderColor = EndGameView1Page.formatingData.TopBarBorderColor, + TopBarTimerText = EndGameView1Page.formatingData.TopBarTimerText, + TopBarTimerTextColor = EndGameView1Page.formatingData.TopBarTimerTextColor, + TopBarTimerColor = EndGameView1Page.formatingData.TopBarTimerColor, + TopBarBlueTeamName = EndGameView1Page.formatingData.TopBarBlueTeamName, + TopBarBlueTeamScore = EndGameView1Page.formatingData.TopBarBlueTeamScore, + TopBarBlueTeamNameColor = EndGameView1Page.formatingData.TopBarBlueTeamNameColor, + TopBarBlueTeamScoreColor = EndGameView1Page.formatingData.TopBarBlueTeamScoreColor, + TopBarBlueTeamWinLossColor = EndGameView1Page.formatingData.TopBarBlueTeamWinLossColor, + TopBarRedTeamName = EndGameView1Page.formatingData.TopBarRedTeamName, + TopBarRedTeamScore = EndGameView1Page.formatingData.TopBarRedTeamScore, + TopBarRedTeamNameColor = EndGameView1Page.formatingData.TopBarRedTeamNameColor, + TopBarRedTeamScoreColor = EndGameView1Page.formatingData.TopBarRedTeamScoreColor, + TopBarRedTeamWinLossColor = EndGameView1Page.formatingData.TopBarRedTeamWinLossColor, + ChampionInfoBackgroundColor = EndGameView1Page.formatingData.ChampionInfoBackgroundColor, + ChampionInfoBackgroundColorDeg = EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg, + ChampionInfoBackgroundColorColor1 = EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1, + ChampionInfoBackgroundColorPercent1 = EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1, + ChampionInfoBackgroundColorColor2 = EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2, + ChampionInfoBackgroundColorPercent2 = EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2, + ChampionInfoGradiant = EndGameView1Page.formatingData.ChampionInfoGradiant, + ChampionInfoBorderColor = EndGameView1Page.formatingData.ChampionInfoBorderColor, + ChampionInfoText = EndGameView1Page.formatingData.ChampionInfoText, + ChampionInfoTextColor = EndGameView1Page.formatingData.ChampionInfoTextColor, + ChampionInfoBlueBarColor = EndGameView1Page.formatingData.ChampionInfoBlueBarColor, + ChampionInfoRedBarColor = EndGameView1Page.formatingData.ChampionInfoRedBarColor, + ChampionInfoBlueDegaTextColor = EndGameView1Page.formatingData.ChampionInfoBlueDegaTextColor, + ChampionInfoRedDegaTextColor = EndGameView1Page.formatingData.ChampionInfoRedDegaTextColor, + BansBackgroundColor = EndGameView1Page.formatingData.BansBackgroundColor, + BansBackgroundColorDeg = EndGameView1Page.formatingData.BansBackgroundColorDeg, + BansBackgroundColorColor1 = EndGameView1Page.formatingData.BansBackgroundColorColor1, + BansBackgroundColorPercent1 = EndGameView1Page.formatingData.BansBackgroundColorPercent1, + BansBackgroundColorColor2 = EndGameView1Page.formatingData.BansBackgroundColorColor2, + BansBackgroundColorPercent2 = EndGameView1Page.formatingData.BansBackgroundColorPercent2, + BansGradiant = EndGameView1Page.formatingData.BansGradiant, + BansBorderColor = EndGameView1Page.formatingData.BansBorderColor, + BansTextColor = EndGameView1Page.formatingData.BansTextColor, + GlobalStatsBackgroundColor = EndGameView1Page.formatingData.GlobalStatsBackgroundColor, + GlobalStatsBackgroundColorDeg = EndGameView1Page.formatingData.GlobalStatsBackgroundColorDeg, + GlobalStatsBackgroundColorColor1 = EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1, + GlobalStatsBackgroundColorPercent1 = EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1, + GlobalStatsBackgroundColorColor2 = EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2, + GlobalStatsBackgroundColorPercent2 = EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2, + GlobalStatsGradiant = EndGameView1Page.formatingData.GlobalStatsGradiant, + GlobalStatsBorderColor = EndGameView1Page.formatingData.GlobalStatsBorderColor, + GlobalStatsTextColor = EndGameView1Page.formatingData.GlobalStatsTextColor, + GlobalStatsBlueTextColor = EndGameView1Page.formatingData.GlobalStatsBlueTextColor, + GlobalStatsRedTextColor = EndGameView1Page.formatingData.GlobalStatsRedTextColor, + GoldDiffBackgroundColor = EndGameView1Page.formatingData.GoldDiffBackgroundColor, + GoldDiffBackgroundColorDeg = EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg, + GoldDiffBackgroundColorColor1 = EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1, + GoldDiffBackgroundColorPercent1 = EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1, + GoldDiffBackgroundColorColor2 = EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2, + GoldDiffBackgroundColorPercent2 = EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2, + GoldDiffGradiant = EndGameView1Page.formatingData.GoldDiffGradiant, + GoldDiffBorderColor = EndGameView1Page.formatingData.GoldDiffBorderColor, + GoldDiffText = EndGameView1Page.formatingData.GoldDiffText, + GoldDiffTextColor = EndGameView1Page.formatingData.GoldDiffTextColor, + GoldDiffBlueTextGoldColor = EndGameView1Page.formatingData.GoldDiffBlueTextGoldColor, + GoldDiffRedTextGoldColor = EndGameView1Page.formatingData.GoldDiffRedTextGoldColor, + GoldDiffZeroTextGoldColor = EndGameView1Page.formatingData.GoldDiffZeroTextGoldColor, + GoldDiffBluePointGoldColor = EndGameView1Page.formatingData.GoldDiffBluePointGoldColor, + GoldDiffRedPointGoldColor = EndGameView1Page.formatingData.GoldDiffRedPointGoldColor, + GoldDiffZeroPointGoldColor = EndGameView1Page.formatingData.GoldDiffZeroPointGoldColor, + GoldDiffStartEndPointGoldColor = EndGameView1Page.formatingData.GoldDiffStartEndPointGoldColor, + GoldDiffLinkPointGoldColor = EndGameView1Page.formatingData.GoldDiffLinkPointGoldColor, + GoldDiffBarColor = EndGameView1Page.formatingData.GoldDiffBarColor + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/endgame/configEndGameView1.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileEndGameView1()", "Generation ok"); + return "/assets/endgame/configEndGameView1.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileEndGameView1()", "Error generation old version recive : " + e.Message); + return "/assets/endgame/configEndGameView1.json"; + } + } + + private string GenerateConfigFileEndGameView2() + { + try + { + var data = new EndGameView2Page.FormatingData + { + DefaultPatch = EndGameView2Page.formatingData.DefaultPatch, + DefaultRegion = EndGameView2Page.formatingData.DefaultRegion, + BackgroundColor = EndGameView2Page.formatingData.BackgroundColor, + BackgroundColorDeg = EndGameView2Page.formatingData.BackgroundColorDeg, + BackgroundColorColor1 = EndGameView2Page.formatingData.BackgroundColorColor1, + BackgroundColorPercent1 = EndGameView2Page.formatingData.BackgroundColorPercent1, + BackgroundColorColor2 = EndGameView2Page.formatingData.BackgroundColorColor2, + BackgroundColorPercent2 = EndGameView2Page.formatingData.BackgroundColorPercent2, + TopBarBackgroundColor = EndGameView2Page.formatingData.TopBarBackgroundColor, + TopBarBackgroundColorDeg = EndGameView2Page.formatingData.TopBarBackgroundColorDeg, + TopBarBackgroundColorColor1 = EndGameView2Page.formatingData.TopBarBackgroundColorColor1, + TopBarBackgroundColorPercent1 = EndGameView2Page.formatingData.TopBarBackgroundColorPercent1, + TopBarBackgroundColorColor2 = EndGameView2Page.formatingData.TopBarBackgroundColorColor2, + TopBarBackgroundColorPercent2 = EndGameView2Page.formatingData.TopBarBackgroundColorPercent2, + TopBarGradiant = EndGameView2Page.formatingData.TopBarGradiant, + TopBarBorderColor = EndGameView2Page.formatingData.TopBarBorderColor, + TopBarTimerText = EndGameView2Page.formatingData.TopBarTimerText, + TopBarTimerTextColor = EndGameView2Page.formatingData.TopBarTimerTextColor, + TopBarTimerColor = EndGameView2Page.formatingData.TopBarTimerColor, + TopBarBlueTeamName = EndGameView2Page.formatingData.TopBarBlueTeamName, + TopBarBlueTeamScore = EndGameView2Page.formatingData.TopBarBlueTeamScore, + TopBarBlueTeamNameColor = EndGameView2Page.formatingData.TopBarBlueTeamNameColor, + TopBarBlueTeamScoreColor = EndGameView2Page.formatingData.TopBarBlueTeamScoreColor, + TopBarBlueTeamWinLossColor = EndGameView2Page.formatingData.TopBarBlueTeamWinLossColor, + TopBarRedTeamName = EndGameView2Page.formatingData.TopBarRedTeamName, + TopBarRedTeamScore = EndGameView2Page.formatingData.TopBarRedTeamScore, + TopBarRedTeamNameColor = EndGameView2Page.formatingData.TopBarRedTeamNameColor, + TopBarRedTeamScoreColor = EndGameView2Page.formatingData.TopBarRedTeamScoreColor, + TopBarRedTeamWinLossColor = EndGameView2Page.formatingData.TopBarRedTeamWinLossColor, + ChampionInfoBackgroundColor = EndGameView2Page.formatingData.ChampionInfoBackgroundColor, + ChampionInfoBackgroundColorDeg = EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg, + ChampionInfoBackgroundColorColor1 = EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1, + ChampionInfoBackgroundColorPercent1 = EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1, + ChampionInfoBackgroundColorColor2 = EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2, + ChampionInfoBackgroundColorPercent2 = EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2, + ChampionInfoGradiant = EndGameView2Page.formatingData.ChampionInfoGradiant, + ChampionInfoBorderColor = EndGameView2Page.formatingData.ChampionInfoBorderColor, + ChampionInfoText = EndGameView2Page.formatingData.ChampionInfoText, + ChampionInfoTextColor = EndGameView2Page.formatingData.ChampionInfoTextColor, + ChampionInfoBlueBarColor = EndGameView2Page.formatingData.ChampionInfoBlueBarColor, + ChampionInfoRedBarColor = EndGameView2Page.formatingData.ChampionInfoRedBarColor, + ChampionInfoBlueDegaTextColor = EndGameView2Page.formatingData.ChampionInfoBlueDegaTextColor, + ChampionInfoRedDegaTextColor = EndGameView2Page.formatingData.ChampionInfoRedDegaTextColor, + BansBackgroundColor = EndGameView2Page.formatingData.BansBackgroundColor, + BansBackgroundColorDeg = EndGameView2Page.formatingData.BansBackgroundColorDeg, + BansBackgroundColorColor1 = EndGameView2Page.formatingData.BansBackgroundColorColor1, + BansBackgroundColorPercent1 = EndGameView2Page.formatingData.BansBackgroundColorPercent1, + BansBackgroundColorColor2 = EndGameView2Page.formatingData.BansBackgroundColorColor2, + BansBackgroundColorPercent2 = EndGameView2Page.formatingData.BansBackgroundColorPercent2, + BansGradiant = EndGameView2Page.formatingData.BansGradiant, + BansBorderColor = EndGameView2Page.formatingData.BansBorderColor, + BansTextColor = EndGameView2Page.formatingData.BansTextColor, + GlobalStatsBackgroundColor = EndGameView2Page.formatingData.GlobalStatsBackgroundColor, + GlobalStatsBackgroundColorDeg = EndGameView2Page.formatingData.GlobalStatsBackgroundColorDeg, + GlobalStatsBackgroundColorColor1 = EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1, + GlobalStatsBackgroundColorPercent1 = EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1, + GlobalStatsBackgroundColorColor2 = EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2, + GlobalStatsBackgroundColorPercent2 = EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2, + GlobalStatsGradiant = EndGameView2Page.formatingData.GlobalStatsGradiant, + GlobalStatsBorderColor = EndGameView2Page.formatingData.GlobalStatsBorderColor, + GlobalStatsTextColor = EndGameView2Page.formatingData.GlobalStatsTextColor, + GlobalStatsBlueTextColor = EndGameView2Page.formatingData.GlobalStatsBlueTextColor, + GlobalStatsRedTextColor = EndGameView2Page.formatingData.GlobalStatsRedTextColor, + GoldDiffBackgroundColor = EndGameView2Page.formatingData.GoldDiffBackgroundColor, + GoldDiffBackgroundColorDeg = EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg, + GoldDiffBackgroundColorColor1 = EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1, + GoldDiffBackgroundColorPercent1 = EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1, + GoldDiffBackgroundColorColor2 = EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2, + GoldDiffBackgroundColorPercent2 = EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2, + GoldDiffGradiant = EndGameView2Page.formatingData.GoldDiffGradiant, + GoldDiffBorderColor = EndGameView2Page.formatingData.GoldDiffBorderColor, + GoldDiffText = EndGameView2Page.formatingData.GoldDiffText, + GoldDiffTextColor = EndGameView2Page.formatingData.GoldDiffTextColor, + GoldDiffBlueTextGoldColor = EndGameView2Page.formatingData.GoldDiffBlueTextGoldColor, + GoldDiffRedTextGoldColor = EndGameView2Page.formatingData.GoldDiffRedTextGoldColor, + GoldDiffZeroTextGoldColor = EndGameView2Page.formatingData.GoldDiffZeroTextGoldColor, + GoldDiffBluePointGoldColor = EndGameView2Page.formatingData.GoldDiffBluePointGoldColor, + GoldDiffRedPointGoldColor = EndGameView2Page.formatingData.GoldDiffRedPointGoldColor, + GoldDiffZeroPointGoldColor = EndGameView2Page.formatingData.GoldDiffZeroPointGoldColor, + GoldDiffStartEndPointGoldColor = EndGameView2Page.formatingData.GoldDiffStartEndPointGoldColor, + GoldDiffLinkPointGoldColor = EndGameView2Page.formatingData.GoldDiffLinkPointGoldColor, + GoldDiffBarColor = EndGameView2Page.formatingData.GoldDiffBarColor, + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/endgame/configEndGameView2.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileEndGameView2()", "Generation ok"); + return "/assets/endgame/configEndGameView2.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileEndGameView2()", "Error generation old version recive : " + e.Message); + return "/assets/endgame/configEndGameView2.json"; + } + } + + private string GenerateConfigFileEndGameView3() + { + try + { + var data = new EndGameView3Page.FormatingData + { + DefaultPatch = EndGameView3Page.formatingData.DefaultPatch, + DefaultRegion = EndGameView3Page.formatingData.DefaultRegion, + BackgroundColor = EndGameView3Page.formatingData.BackgroundColor, + BackgroundColorDeg = EndGameView3Page.formatingData.BackgroundColorDeg, + BackgroundColorColor1 = EndGameView3Page.formatingData.BackgroundColorColor1, + BackgroundColorPercent1 = EndGameView3Page.formatingData.BackgroundColorPercent1, + BackgroundColorColor2 = EndGameView3Page.formatingData.BackgroundColorColor2, + BackgroundColorPercent2 = EndGameView3Page.formatingData.BackgroundColorPercent2, + TopBarBackgroundColor = EndGameView3Page.formatingData.TopBarBackgroundColor, + TopBarBackgroundColorDeg = EndGameView3Page.formatingData.TopBarBackgroundColorDeg, + TopBarBackgroundColorColor1 = EndGameView3Page.formatingData.TopBarBackgroundColorColor1, + TopBarBackgroundColorPercent1 = EndGameView3Page.formatingData.TopBarBackgroundColorPercent1, + TopBarBackgroundColorColor2 = EndGameView3Page.formatingData.TopBarBackgroundColorColor2, + TopBarBackgroundColorPercent2 = EndGameView3Page.formatingData.TopBarBackgroundColorPercent2, + TopBarGradiant = EndGameView3Page.formatingData.TopBarGradiant, + TopBarBorderColor = EndGameView3Page.formatingData.TopBarBorderColor, + TopBarTimerText = EndGameView3Page.formatingData.TopBarTimerText, + TopBarTimerTextColor = EndGameView3Page.formatingData.TopBarTimerTextColor, + TopBarTimerColor = EndGameView3Page.formatingData.TopBarTimerColor, + TopBarBlueTeamName = EndGameView3Page.formatingData.TopBarBlueTeamName, + TopBarBlueTeamScore = EndGameView3Page.formatingData.TopBarBlueTeamScore, + TopBarBlueTeamNameColor = EndGameView3Page.formatingData.TopBarBlueTeamNameColor, + TopBarBlueTeamScoreColor = EndGameView3Page.formatingData.TopBarBlueTeamScoreColor, + TopBarBlueTeamWinLossColor = EndGameView3Page.formatingData.TopBarBlueTeamWinLossColor, + TopBarRedTeamName = EndGameView3Page.formatingData.TopBarRedTeamName, + TopBarRedTeamScore = EndGameView3Page.formatingData.TopBarRedTeamScore, + TopBarRedTeamNameColor = EndGameView3Page.formatingData.TopBarRedTeamNameColor, + TopBarRedTeamScoreColor = EndGameView3Page.formatingData.TopBarRedTeamScoreColor, + TopBarRedTeamWinLossColor = EndGameView3Page.formatingData.TopBarRedTeamWinLossColor, + ChampionInfoBackgroundColor = EndGameView3Page.formatingData.ChampionInfoBackgroundColor, + ChampionInfoBackgroundColorDeg = EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg, + ChampionInfoBackgroundColorColor1 = EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1, + ChampionInfoBackgroundColorPercent1 = EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1, + ChampionInfoBackgroundColorColor2 = EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2, + ChampionInfoBackgroundColorPercent2 = EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2, + ChampionInfoGradiant = EndGameView3Page.formatingData.ChampionInfoGradiant, + ChampionInfoBorderColor = EndGameView3Page.formatingData.ChampionInfoBorderColor, + ChampionInfoText = EndGameView3Page.formatingData.ChampionInfoText, + ChampionInfoTextColor = EndGameView3Page.formatingData.ChampionInfoTextColor, + ChampionInfoBlueBarColor = EndGameView3Page.formatingData.ChampionInfoBlueBarColor, + ChampionInfoRedBarColor = EndGameView3Page.formatingData.ChampionInfoRedBarColor, + ChampionInfoBlueDegaTextColor = EndGameView3Page.formatingData.ChampionInfoBlueDegaTextColor, + ChampionInfoRedDegaTextColor = EndGameView3Page.formatingData.ChampionInfoRedDegaTextColor, + BansBackgroundColor = EndGameView3Page.formatingData.BansBackgroundColor, + BansBackgroundColorDeg = EndGameView3Page.formatingData.BansBackgroundColorDeg, + BansBackgroundColorColor1 = EndGameView3Page.formatingData.BansBackgroundColorColor1, + BansBackgroundColorPercent1 = EndGameView3Page.formatingData.BansBackgroundColorPercent1, + BansBackgroundColorColor2 = EndGameView3Page.formatingData.BansBackgroundColorColor2, + BansBackgroundColorPercent2 = EndGameView3Page.formatingData.BansBackgroundColorPercent2, + BansGradiant = EndGameView3Page.formatingData.BansGradiant, + BansBorderColor = EndGameView3Page.formatingData.BansBorderColor, + BansTextColor = EndGameView3Page.formatingData.BansTextColor, + GlobalStatsBackgroundColor = EndGameView3Page.formatingData.GlobalStatsBackgroundColor, + GlobalStatsBackgroundColorDeg = EndGameView3Page.formatingData.GlobalStatsBackgroundColorDeg, + GlobalStatsBackgroundColorColor1 = EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1, + GlobalStatsBackgroundColorPercent1 = EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1, + GlobalStatsBackgroundColorColor2 = EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2, + GlobalStatsBackgroundColorPercent2 = EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2, + GlobalStatsGradiant = EndGameView3Page.formatingData.GlobalStatsGradiant, + GlobalStatsBorderColor = EndGameView3Page.formatingData.GlobalStatsBorderColor, + GlobalStatsSeparationColor = EndGameView3Page.formatingData.GlobalStatsSeparationColor, + GlobalStatsTextColor = EndGameView3Page.formatingData.GlobalStatsTextColor, + GlobalStatsBlueTextColor = EndGameView3Page.formatingData.GlobalStatsBlueTextColor, + GlobalStatsRedTextColor = EndGameView3Page.formatingData.GlobalStatsRedTextColor, + GoldDiffBackgroundColor = EndGameView3Page.formatingData.GoldDiffBackgroundColor, + GoldDiffBackgroundColorDeg = EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg, + GoldDiffBackgroundColorColor1 = EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1, + GoldDiffBackgroundColorPercent1 = EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1, + GoldDiffBackgroundColorColor2 = EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2, + GoldDiffBackgroundColorPercent2 = EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2, + GoldDiffGradiant = EndGameView3Page.formatingData.GoldDiffGradiant, + GoldDiffBorderColor = EndGameView3Page.formatingData.GoldDiffBorderColor, + GoldDiffText = EndGameView3Page.formatingData.GoldDiffText, + GoldDiffTextColor = EndGameView3Page.formatingData.GoldDiffTextColor, + GoldDiffBlueTextGoldColor = EndGameView3Page.formatingData.GoldDiffBlueTextGoldColor, + GoldDiffRedTextGoldColor = EndGameView3Page.formatingData.GoldDiffRedTextGoldColor, + GoldDiffZeroTextGoldColor = EndGameView3Page.formatingData.GoldDiffZeroTextGoldColor, + GoldDiffBluePointGoldColor = EndGameView3Page.formatingData.GoldDiffBluePointGoldColor, + GoldDiffRedPointGoldColor = EndGameView3Page.formatingData.GoldDiffRedPointGoldColor, + GoldDiffZeroPointGoldColor = EndGameView3Page.formatingData.GoldDiffZeroPointGoldColor, + GoldDiffStartEndPointGoldColor = EndGameView3Page.formatingData.GoldDiffStartEndPointGoldColor, + GoldDiffLinkPointGoldColor = EndGameView3Page.formatingData.GoldDiffLinkPointGoldColor, + GoldDiffBarColor = EndGameView3Page.formatingData.GoldDiffBarColor + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/endgame/configEndGameView3.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileEndGameView3()", "Generation ok"); + return "/assets/endgame/configEndGameView3.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileEndGameView3()", "Error generation old version recive : " + e.Message); + return "/assets/endgame/configEndGameView3.json"; + } + } + + private string GenerateConfigFileRuneAdc() + { + try + { + var data = new RunesAdcPage.FormatingData + { + DefaultPatch = RunesAdcPage.formatingData.DefaultPatch, + DefaultRegion = RunesAdcPage.formatingData.DefaultRegion, + BackgroudGradient = RunesAdcPage.formatingData.BackgroudGradient, + BackgroudGradientDeg = RunesAdcPage.formatingData.BackgroudGradientDeg, + BackgroudGradientColor1 = RunesAdcPage.formatingData.BackgroudGradientColor1, + BackgroudGradientPercent1 = RunesAdcPage.formatingData.BackgroudGradientPercent1, + BackgroudGradientColor2 = RunesAdcPage.formatingData.BackgroudGradientColor2, + BackgroudGradientPercent2 = RunesAdcPage.formatingData.BackgroudGradientPercent2, + OverlayColorBackgroudGradient = RunesAdcPage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesAdcPage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesAdcPage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesAdcPage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesAdcPage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesAdcPage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesAdcPage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesAdcPage.formatingData.BakgroundPicture, + LanePicture = RunesAdcPage.formatingData.LanePicture, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesAdc.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneAdc()", "Generation ok"); + return "/assets/runes/configRunesAdc.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneAdc()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesAdc.json"; + } + } + + private string GenerateConfigFileRuneAdcSupp() + { + try + { + var data = new RunesAdcSuppPage.FormatingData + { + DefaultPatch = RunesAdcSuppPage.formatingData.DefaultPatch, + DefaultRegion = RunesAdcSuppPage.formatingData.DefaultRegion, + BackgroudGradient = RunesAdcSuppPage.formatingData.BackgroudGradient, + OverlayColorBackgroudGradient = RunesAdcSuppPage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesAdcSuppPage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesAdcSuppPage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesAdcSuppPage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesAdcSuppPage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesAdcSuppPage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesAdcSuppPage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesAdcSuppPage.formatingData.BakgroundPicture, + LanePictureAdc = RunesAdcSuppPage.formatingData.LanePictureAdc, + LanePictureSupp = RunesAdcSuppPage.formatingData.LanePictureSupp, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesAdcSupp.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneAdcSupp()", "Generation ok"); + return "/assets/runes/configRunesAdcSupp.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneAdcSupp()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesAdcSupp.json"; + } + } + + private string GenerateConfigFileRuneJungle() + { + try + { + var data = new RunesJunglePage.FormatingData + { + DefaultPatch = RunesJunglePage.formatingData.DefaultPatch, + DefaultRegion = RunesJunglePage.formatingData.DefaultRegion, + BackgroudGradient = RunesJunglePage.formatingData.BackgroudGradient, + OverlayColorBackgroudGradient = RunesJunglePage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesJunglePage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesJunglePage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesJunglePage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesJunglePage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesJunglePage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesJunglePage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesJunglePage.formatingData.BakgroundPicture, + LanePicture = RunesJunglePage.formatingData.LanePicture, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesJungle.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneJungle()", "Generation ok"); + return "/assets/runes/configRunesJungle.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneJungle()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesJungle.json"; + } + } + + private string GenerateConfigFileRuneMid() + { + try + { + var data = new RunesMidPage.FormatingData + { + DefaultPatch = RunesMidPage.formatingData.DefaultPatch, + DefaultRegion = RunesMidPage.formatingData.DefaultRegion, + BackgroudGradient = RunesMidPage.formatingData.BackgroudGradient, + OverlayColorBackgroudGradient = RunesMidPage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesMidPage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesMidPage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesMidPage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesMidPage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesMidPage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesMidPage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesMidPage.formatingData.BakgroundPicture, + LanePicture = RunesMidPage.formatingData.LanePicture, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesMid.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneMid()", "Generation ok"); + return "/assets/runes/configRunesMid.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneMid()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesMid.json"; + } + } + + private string GenerateConfigFileRuneSupp() + { + try + { + var data = new RunesSuppPage.FormatingData + { + DefaultPatch = RunesSuppPage.formatingData.DefaultPatch, + DefaultRegion = RunesSuppPage.formatingData.DefaultRegion, + BackgroudGradient = RunesSuppPage.formatingData.BackgroudGradient, + OverlayColorBackgroudGradient = RunesSuppPage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesSuppPage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesSuppPage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesSuppPage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesSuppPage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesSuppPage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesSuppPage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesSuppPage.formatingData.BakgroundPicture, + LanePicture = RunesSuppPage.formatingData.LanePicture, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesSupp.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneSupp()", "Generation ok"); + return "/assets/runes/configRunesSupp.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneSupp()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesSupp.json"; + } + } + + private string GenerateConfigFileRuneTop() + { + try + { + var data = new RunesTopPage.FormatingData + { + DefaultPatch = RunesTopPage.formatingData.DefaultPatch, + DefaultRegion = RunesTopPage.formatingData.DefaultRegion, + BackgroudGradient = RunesTopPage.formatingData.BackgroudGradient, + OverlayColorBackgroudGradient = RunesTopPage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesTopPage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesTopPage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesTopPage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesTopPage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesTopPage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesTopPage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesTopPage.formatingData.BakgroundPicture, + LanePicture = RunesTopPage.formatingData.LanePicture, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesTop.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneTop()", "Generation ok"); + return "/assets/runes/configRunesTop.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneTop()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesTop.json"; + } + } + + private string GenerateConfigFileRuneAll() + { + try + { + var data = new RunesAllPage.FormatingData + { + DefaultPatch = RunesAllPage.formatingData.DefaultPatch, + DefaultRegion = RunesAllPage.formatingData.DefaultRegion, + BackgroudGradient = RunesAllPage.formatingData.BackgroudGradient, + OverlayColorBackgroudGradient = RunesAllPage.formatingData.OverlayColorBackgroudGradient, + BlueSideColorTextSummoner = RunesAllPage.formatingData.BlueSideColorTextSummoner, + RedSideColorTextSummoner = RunesAllPage.formatingData.RedSideColorTextSummoner, + BlueSideColorBorderChampion = RunesAllPage.formatingData.BlueSideColorBorderChampion, + RedSideColorBorderChampion = RunesAllPage.formatingData.RedSideColorBorderChampion, + BlueSideColorSeparationBar = RunesAllPage.formatingData.BlueSideColorSeparationBar, + RedSideColorSeparationBar = RunesAllPage.formatingData.RedSideColorSeparationBar, + BakgroundPicture = RunesAllPage.formatingData.BakgroundPicture, + LanePictureAdc = RunesAllPage.formatingData.LanePictureAdc, + LanePictureSupp = RunesAllPage.formatingData.LanePictureSupp, + LanePictureJungle = RunesAllPage.formatingData.LanePictureJungle, + LanePictureMid = RunesAllPage.formatingData.LanePictureMid, + LanePictureTop = RunesAllPage.formatingData.LanePictureTop, + + }; + string jsonString = JsonConvert.SerializeObject(data); + FileManagerLocal.WriteInFile("./wwwroot/assets/runes/configRunesAll.json", jsonString); + _logger.log(LoggingLevel.INFO, "GenerateConfigFileRuneAll()", "Generation ok"); + return "/assets/runes/configRunesAll.json"; + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "GenerateConfigFileRuneAll()", "Error generation old version recive : " + e.Message); + return "/assets/runes/configRunesAll.json"; + } + } } } diff --git a/OSL-Server/Pages/ConfigPage.razor.css b/OSL-Server/Pages/ConfigPage.razor.css index c66591d..f45a015 100644 --- a/OSL-Server/Pages/ConfigPage.razor.css +++ b/OSL-Server/Pages/ConfigPage.razor.css @@ -16,4 +16,28 @@ html, body { font-family: MyFont; font-weight: bold; text-decoration: underline; -} \ No newline at end of file +} + +.configuration-champ-select-content { + position: relative; + left: 50px; + max-width: 770px; +} + +.configuration-in-game-content { + position: relative; + left: 50px; + max-width: 770px; +} + +.configuration-end-game-content { + position: relative; + left: 50px; + max-width: 770px; +} + +.configuration-runes-content { + position: relative; + left: 50px; + max-width: 770px; +} diff --git a/OSL-Server/Pages/EndGame/EndGamePage.razor b/OSL-Server/Pages/EndGame/EndGamePage.razor new file mode 100644 index 0000000..a651e2a --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGamePage.razor @@ -0,0 +1,1058 @@ +@page "/endgame" +@using OSL_Server.DataReciveClient.Processing.EndGame; +@using MudBlazor + +End Game +
+
+
+

End Game :

+

+ Display end game information : +
- Time game +
- Win, loss team +
- Damages to champions +
- Damages ... (In progress to add other damages information (tower, magic, physic, ...)) +
- Bans informations +
- KDA / Total gold / Tower, Dagon, Elder, Herald, Baron kill +

+ + @*View1*@ +
+
+

End Game Overlay 1

+ Link Overlay 1 + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ deg + @EndGameView1Page.formatingData.BackgroundColorColor1 + + % + @EndGameView1Page.formatingData.BackgroundColorColor2 + + % + +
+
+ + +
+
+
+ + + +
+
+
+
+

Timer Bar

+
+
+ + + + +
+ deg + @EndGameView1Page.formatingData.TopBarBackgroundColorColor1 + + % + @EndGameView1Page.formatingData.TopBarBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Blue Team Name Color @EndGameView1Page.formatingData.TopBarBlueTeamNameColor +
Blue Team WinLoss Color @EndGameView1Page.formatingData.TopBarBlueTeamWinLossColor +
Blue Team Score Color @EndGameView1Page.formatingData.TopBarBlueTeamScoreColor +
Red Team Name Color @EndGameView1Page.formatingData.TopBarRedTeamNameColor +
Red Team WinLoss Color @EndGameView1Page.formatingData.TopBarRedTeamWinLossColor +
Red Team Score Color @EndGameView1Page.formatingData.TopBarRedTeamScoreColor +
Timer Text Color @EndGameView1Page.formatingData.TopBarTimerTextColor +
Timer Color @EndGameView1Page.formatingData.TopBarTimerColor +
+
+
+ + + +
+
+
+
+
+

Champion Info

+
+
+ + + + +
+ deg + @EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1 + + % + @EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView1Page.formatingData.ChampionInfoTextColor +
Blue Bar Color @EndGameView1Page.formatingData.ChampionInfoBlueBarColor +
Blue Dega text Color @EndGameView1Page.formatingData.ChampionInfoBlueDegaTextColor +
Red Bar Color @EndGameView1Page.formatingData.ChampionInfoRedBarColor +
Red Dega text Color @EndGameView1Page.formatingData.ChampionInfoRedDegaTextColor +
+
+
+ + + +
+
+
+
+
+

Bans

+
+
+ + + + +
+ deg + @EndGameView1Page.formatingData.BansBackgroundColorColor1 + + % + @EndGameView1Page.formatingData.BansBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView1Page.formatingData.BansTextColor +
+
+
+ + + +
+
+
+ +
+
+

Global Stats

+
+
+ + + + +
+ deg + @EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1 + + % + @EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView1Page.formatingData.GlobalStatsTextColor +
Blue Text Color @EndGameView1Page.formatingData.GlobalStatsBlueTextColor +
Red Text Color @EndGameView1Page.formatingData.GlobalStatsRedTextColor + +
+
+
+ + + +
+
+
+
+
+

Gold diff

+
+
+ + + + +
+ deg + @EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1 + + % + @EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView1Page.formatingData.GoldDiffTextColor +
Blue Text Color @EndGameView1Page.formatingData.GoldDiffBlueTextGoldColor +
Red Text Color @EndGameView1Page.formatingData.GoldDiffRedTextGoldColor +
Zero Text Color @EndGameView1Page.formatingData.GoldDiffZeroTextGoldColor +
Blue Point Color @EndGameView1Page.formatingData.GoldDiffBluePointGoldColor +
Red Point Color @EndGameView1Page.formatingData.GoldDiffRedPointGoldColor +
Zero Point Color @EndGameView1Page.formatingData.GoldDiffZeroPointGoldColor +
Start and End Point Color @EndGameView1Page.formatingData.GoldDiffStartEndPointGoldColor +
Link Point Color @EndGameView1Page.formatingData.GoldDiffLinkPointGoldColor + + + + + + + + +
+
+
+ + + +
+
+
+ +
+ @*
+
+ + + +
+
*@ +
+ + + @*View2*@ +
+
+

End Game Overlay 2

+ Link Overlay 2 + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ deg + @EndGameView2Page.formatingData.BackgroundColorColor1 + + % + @EndGameView2Page.formatingData.BackgroundColorColor2 + + % + +
+
+ + +
+
+
+ + + +
+
+
+
+

Timer Bar

+
+
+ + + + +
+ deg + @EndGameView2Page.formatingData.TopBarBackgroundColorColor1 + + % + @EndGameView2Page.formatingData.TopBarBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Blue Team Name Color @EndGameView2Page.formatingData.TopBarBlueTeamNameColor +
Blue Team WinLoss Color @EndGameView2Page.formatingData.TopBarBlueTeamWinLossColor +
Blue Team Score Color @EndGameView2Page.formatingData.TopBarBlueTeamScoreColor +
Red Team Name Color @EndGameView2Page.formatingData.TopBarRedTeamNameColor +
Red Team WinLoss Color @EndGameView2Page.formatingData.TopBarRedTeamWinLossColor +
Red Team Score Color @EndGameView2Page.formatingData.TopBarRedTeamScoreColor +
Timer Text Color @EndGameView2Page.formatingData.TopBarTimerTextColor +
Timer Color @EndGameView2Page.formatingData.TopBarTimerColor +
+
+
+ + + +
+
+
+
+
+

Champion Info

+
+
+ + + + +
+ deg + @EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1 + + % + @EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView2Page.formatingData.ChampionInfoTextColor +
Blue Bar Color @EndGameView2Page.formatingData.ChampionInfoBlueBarColor +
Blue Dega text Color @EndGameView2Page.formatingData.ChampionInfoBlueDegaTextColor +
Red Bar Color @EndGameView2Page.formatingData.ChampionInfoRedBarColor +
Red Dega text Color @EndGameView2Page.formatingData.ChampionInfoRedDegaTextColor +
+
+
+ + + +
+
+
+
+
+

Bans

+
+
+ + + + +
+ deg + @EndGameView2Page.formatingData.BansBackgroundColorColor1 + + % + @EndGameView2Page.formatingData.BansBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView2Page.formatingData.BansTextColor +
+
+
+ + + +
+
+
+ +
+
+

Global Stats

+
+
+ + + + +
+ deg + @EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1 + + % + @EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView2Page.formatingData.GlobalStatsTextColor +
Blue Text Color @EndGameView2Page.formatingData.GlobalStatsBlueTextColor +
Red Text Color @EndGameView2Page.formatingData.GlobalStatsRedTextColor + +
+
+
+ + + +
+
+
+
+
+

Gold diff

+
+
+ + + + +
+ deg + @EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1 + + % + @EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + Text Color @EndGameView2Page.formatingData.GoldDiffTextColor +
Blue Text Color @EndGameView2Page.formatingData.GoldDiffBlueTextGoldColor +
Red Text Color @EndGameView2Page.formatingData.GoldDiffRedTextGoldColor +
Zero Text Color @EndGameView2Page.formatingData.GoldDiffZeroTextGoldColor +
Blue Point Color @EndGameView2Page.formatingData.GoldDiffBluePointGoldColor +
Red Point Color @EndGameView2Page.formatingData.GoldDiffRedPointGoldColor +
Zero Point Color @EndGameView2Page.formatingData.GoldDiffZeroPointGoldColor +
Start and End Point Color @EndGameView2Page.formatingData.GoldDiffStartEndPointGoldColor +
Link Point Color @EndGameView2Page.formatingData.GoldDiffLinkPointGoldColor + + + + + + + + +
+
+
+ + + +
+
+
+ +
+ @*
+
+ + + +
+
*@ +
+ + @*View3*@ +
+
+

End Game Overlay 3

+ Link Overlay 3 + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ deg + @EndGameView3Page.formatingData.BackgroundColorColor1 + + % + @EndGameView3Page.formatingData.BackgroundColorColor2 + + % + +
+
+ + + + + +
+
+
+ + + +
+
+
+
+

Timer Bar

+
+
+ + + + +
+ deg + @EndGameView3Page.formatingData.TopBarBackgroundColorColor1 + + % + @EndGameView3Page.formatingData.TopBarBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + + + + + Blue Team Name Color @EndGameView3Page.formatingData.TopBarBlueTeamNameColor +
Blue Team WinLoss Color @EndGameView3Page.formatingData.TopBarBlueTeamWinLossColor +
Blue Team Score Color @EndGameView3Page.formatingData.TopBarBlueTeamScoreColor +
Red Team Name Color @EndGameView3Page.formatingData.TopBarRedTeamNameColor +
Red Team WinLoss Color @EndGameView3Page.formatingData.TopBarRedTeamWinLossColor +
Red Team Score Color @EndGameView3Page.formatingData.TopBarRedTeamScoreColor +
Timer Text Color @EndGameView3Page.formatingData.TopBarTimerTextColor +
Timer Color @EndGameView3Page.formatingData.TopBarTimerColor +
+
+
+ + + +
+
+
+
+
+

Champion Info

+
+
+ + + + +
+ deg + @EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1 + + % + @EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + + + + + Text Color @EndGameView3Page.formatingData.ChampionInfoTextColor +
Blue Bar Color @EndGameView3Page.formatingData.ChampionInfoBlueBarColor +
Blue Dega text Color @EndGameView3Page.formatingData.ChampionInfoBlueDegaTextColor +
Red Bar Color @EndGameView3Page.formatingData.ChampionInfoRedBarColor +
Red Dega text Color @EndGameView3Page.formatingData.ChampionInfoRedDegaTextColor +
+
+
+ + + +
+
+
+
+
+

Bans

+
+
+ + + + +
+ deg + @EndGameView3Page.formatingData.BansBackgroundColorColor1 + + % + @EndGameView3Page.formatingData.BansBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + + + + + Text Color @EndGameView3Page.formatingData.BansTextColor +
+
+
+ + + +
+
+
+ +
+
+

Global Stats

+
+
+ + + + +
+ deg + @EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1 + + % + @EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + + + + + + + + + + + + + Text Color @EndGameView3Page.formatingData.GlobalStatsTextColor +
Blue Text Color @EndGameView3Page.formatingData.GlobalStatsBlueTextColor +
Red Text Color @EndGameView3Page.formatingData.GlobalStatsRedTextColor + +
+
+
+ + + +
+
+
+
+
+

Gold diff

+
+
+ + + + +
+ deg + @EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1 + + % + @EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2 + + % + +
+ + + + + + + + + + + + + + + + + Text Color @EndGameView3Page.formatingData.GoldDiffTextColor +
Blue Text Color @EndGameView3Page.formatingData.GoldDiffBlueTextGoldColor +
Red Text Color @EndGameView3Page.formatingData.GoldDiffRedTextGoldColor +
Zero Text Color @EndGameView3Page.formatingData.GoldDiffZeroTextGoldColor +
Blue Point Color @EndGameView3Page.formatingData.GoldDiffBluePointGoldColor +
Red Point Color @EndGameView3Page.formatingData.GoldDiffRedPointGoldColor +
Zero Point Color @EndGameView3Page.formatingData.GoldDiffZeroPointGoldColor +
Start and End Point Color @EndGameView3Page.formatingData.GoldDiffStartEndPointGoldColor +
Link Point Color @EndGameView3Page.formatingData.GoldDiffLinkPointGoldColor + + + + + + + + +
+
+
+ + + +
+
+
+ +
+ @*
+
+ + + +
+
*@ +
+
+
+
+
+
+
+
+
+
+
+@code { + public static TextValueOverlayView1 textValueOverlayView1 = new(); + public static TextValueOverlayView2 textValueOverlayView2 = new(); + public static TextValueOverlayView3 textValueOverlayView3 = new(); +} diff --git a/OSL-Server/Pages/EndGame/EndGamePage.razor.cs b/OSL-Server/Pages/EndGame/EndGamePage.razor.cs new file mode 100644 index 0000000..189ae50 --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGamePage.razor.cs @@ -0,0 +1,3009 @@ +using BlazorColorPicker; +using OSL_Server.Pages.ChampSelect; +using OSL_Server.Pages.Runes; +using System.ComponentModel.DataAnnotations; + +namespace OSL_Server.Pages.EndGame +{ + public partial class EndGamePage + { + private static OSLLogger _logger = new OSLLogger("CDragonPage"); + + public static string colorPickerOverlay1 = "hidden"; + public static string colorPickerOverlay1TimerBar = "hidden"; + public static string colorPickerOverlay1ChampInfo = "hidden"; + public static string colorPickerOverlay1Bans = "hidden"; + public static string colorPickerOverlay1GlobalStats = "hidden"; + public static string colorPickerOverlay1GoldDiff = "hidden"; + public static string colorValue = "#0000"; + + public class TextValueOverlayView1 + { + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarBlueTeamName { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarRedTeamName { get; set; } + [StringLength(5, ErrorMessage = "Name is too long (5 character limit).")] + public string? TopBarBlueTeamScore { get; set; } + [StringLength(5, ErrorMessage = "Name is too long (5 character limit).")] + public string? TopBarRedTeamScore { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarTimerText { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? ChampionInfoText { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? GoldDiffText { get; set; } + + public bool BackgroundColor { get; set; } = true; + public bool TopBarGradiant { get; set; } = true; + public bool ChampionInfoGradiant { get; set; } = true; + public bool BansGradiant { get; set; } = true; + public bool GlobalStatsGradiant { get; set; } = true; + public bool GoldDiffGradiant { get; set; } = true; + + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroundColorPercent2 { get; set; } = 100; + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int TopBarBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int TopBarBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int TopBarBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int ChampionInfoBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int ChampionInfoBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int ChampionInfoBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BansBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BansBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BansBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int GlobalStatsBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GlobalStatsBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GlobalStatsBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int GoldDiffBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GoldDiffBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GoldDiffBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int TopBarBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int ChampionInfoBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int BansBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GlobalStatsBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GoldDiffBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GoldDiffBarColor { get; set; } = 1; + + public static void TopBarBlueTeamNameSubmit() + { + EndGameView1Page.formatingData.TopBarBlueTeamName = textValueOverlayView1.TopBarBlueTeamName; + } + public static void TopBarRedTeamNameSubmit() + { + EndGameView1Page.formatingData.TopBarRedTeamName = textValueOverlayView1.TopBarRedTeamName; + } + public static void TopBarBlueTeamScoreSubmit() + { + EndGameView1Page.formatingData.TopBarBlueTeamScore = textValueOverlayView1.TopBarBlueTeamScore; + } + public static void TopBarRedTeamScoreSubmit() + { + EndGameView1Page.formatingData.TopBarRedTeamScore = textValueOverlayView1.TopBarRedTeamScore; + } + public static void SwitchSideRedBlue() + { + string tempsTopBarBlueTeamName = EndGameView1Page.formatingData.TopBarBlueTeamName; + string tempsTopBarBlueTeamScore = EndGameView1Page.formatingData.TopBarBlueTeamScore; + string tempsTopBarRedTeamName = EndGameView1Page.formatingData.TopBarRedTeamName; + string tempsTopBarRedTeamScore = EndGameView1Page.formatingData.TopBarRedTeamScore; + string tempsRextValueOverlayView1TopBarBlueTeamName = textValueOverlayView1.TopBarBlueTeamName; + string tempsRextValueOverlayView1TopBarBlueTeamScore = textValueOverlayView1.TopBarBlueTeamScore; + string tempsRextValueOverlayView1TopBarRedTeamName = textValueOverlayView1.TopBarRedTeamName; + string tempsRextValueOverlayView1TopBarRedTeamScore = textValueOverlayView1.TopBarRedTeamScore; + EndGameView1Page.formatingData.TopBarBlueTeamName = tempsTopBarRedTeamName; + EndGameView1Page.formatingData.TopBarBlueTeamScore = tempsTopBarRedTeamScore; + EndGameView1Page.formatingData.TopBarRedTeamName = tempsTopBarBlueTeamName; + EndGameView1Page.formatingData.TopBarRedTeamScore = tempsTopBarBlueTeamScore; + textValueOverlayView1.TopBarBlueTeamName = tempsRextValueOverlayView1TopBarRedTeamName; + textValueOverlayView1.TopBarBlueTeamScore = tempsRextValueOverlayView1TopBarRedTeamScore; + textValueOverlayView1.TopBarRedTeamName = tempsRextValueOverlayView1TopBarBlueTeamName; + textValueOverlayView1.TopBarRedTeamScore = tempsRextValueOverlayView1TopBarBlueTeamScore; + } + + public static void TopBarGradiantSubmit() + { + } + public static void ChampionInfoGradiantSubmit() + { + } + public static void BansGradiantSubmit() + { + } + public static void GlobalStatsGradiantSubmit() + { + } + public static void GoldDiffGradiantSubmit() + { + } + + + + public static void BackgroundColorSubmit() + { + EndGameView1Page.formatingData.BackgroundColorDeg = textValueOverlayView1.BackgroundColorDeg.ToString(); + EndGameView1Page.formatingData.BackgroundColorPercent1 = textValueOverlayView1.BackgroundColorPercent1.ToString(); + EndGameView1Page.formatingData.BackgroundColorPercent2 = textValueOverlayView1.BackgroundColorPercent2.ToString(); + EndGameView1Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BackgroundColorDeg}deg, {EndGameView1Page.formatingData.BackgroundColorColor1} {EndGameView1Page.formatingData.BackgroundColorPercent1}%, {EndGameView1Page.formatingData.BackgroundColorColor2} {EndGameView1Page.formatingData.BackgroundColorPercent2}%)"; + } + + public static void SetBackgroundColorColor1() + { + if (colorPickerOverlay1.Equals("hidden")) + { + colorPickerOverlay1 = "visible"; + colorValue = EndGameView1Page.formatingData.BackgroundColorColor1; + } + else + { + colorPickerOverlay1 = "hidden"; + EndGameView1Page.formatingData.BackgroundColorColor1 = colorValue; + EndGameView1Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BackgroundColorDeg}deg, {EndGameView1Page.formatingData.BackgroundColorColor1} {EndGameView1Page.formatingData.BackgroundColorPercent1}%, {EndGameView1Page.formatingData.BackgroundColorColor2} {EndGameView1Page.formatingData.BackgroundColorPercent2}%)"; + } + } + public static void SetBackgroundColorColor2() + { + if (colorPickerOverlay1.Equals("hidden")) + { + colorPickerOverlay1 = "visible"; + colorValue = EndGameView1Page.formatingData.BackgroundColorColor2; + } + else + { + colorPickerOverlay1 = "hidden"; + EndGameView1Page.formatingData.BackgroundColorColor2 = colorValue; + EndGameView1Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BackgroundColorDeg}deg, {EndGameView1Page.formatingData.BackgroundColorColor1} {EndGameView1Page.formatingData.BackgroundColorPercent1}%, {EndGameView1Page.formatingData.BackgroundColorColor2} {EndGameView1Page.formatingData.BackgroundColorPercent2}%)"; + } + } + + public static void BackgroundColorEnableDisableSubmit() + { + + } + + + + + + + + + + + + public static void TopBarBackgroundColorSubmit() + { + EndGameView1Page.formatingData.TopBarBackgroundColorDeg = textValueOverlayView1.TopBarBackgroundColorDeg.ToString(); + EndGameView1Page.formatingData.TopBarBackgroundColorPercent1 = textValueOverlayView1.TopBarBackgroundColorPercent1.ToString(); + EndGameView1Page.formatingData.TopBarBackgroundColorPercent2 = textValueOverlayView1.TopBarBackgroundColorPercent2.ToString(); + EndGameView1Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView1Page.formatingData.TopBarBackgroundColorColor1} {EndGameView1Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView1Page.formatingData.TopBarBackgroundColorColor2} {EndGameView1Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + + public static void SetTopBarBackgroundColorColor1() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarBackgroundColorColor1; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarBackgroundColorColor1 = colorValue; + EndGameView1Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView1Page.formatingData.TopBarBackgroundColorColor1} {EndGameView1Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView1Page.formatingData.TopBarBackgroundColorColor2} {EndGameView1Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + } + public static void SetTopBarBackgroundColorColor2() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarBackgroundColorColor2; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarBackgroundColorColor2 = colorValue; + EndGameView1Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView1Page.formatingData.TopBarBackgroundColorColor1} {EndGameView1Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView1Page.formatingData.TopBarBackgroundColorColor2} {EndGameView1Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + } + + public static void TopBarBorderColorSubmit() + { + EndGameView1Page.formatingData.TopBarBorderColor = textValueOverlayView1.TopBarBorderColor.ToString() + "px solid " + TopBarBorderColorNotSet; + } + public static string TempsTopBarBorderColor() + { + string[] tempsColor = EndGameView1Page.formatingData.TopBarBorderColor.Split(" "); + return tempsColor[2]; + } + public static string TopBarBorderColorNotSet = EndGameView1Page.formatingData.TopBarBorderColor.Split(" ")[2]; + public static void SetTopBarBorderColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + string[] tempsBorderColor = EndGameView1Page.formatingData.TopBarBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + TopBarBorderColorNotSet = colorValue; + } + } + + public static void SetTopBarBlueTeamNameColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarBlueTeamNameColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarBlueTeamNameColor = colorValue; + } + } + public static void SetTopBarBlueTeamWinLossColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarBlueTeamWinLossColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarBlueTeamWinLossColor = colorValue; + } + } + public static void SetTopBarBlueTeamScoreColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarBlueTeamScoreColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarBlueTeamScoreColor = colorValue; + } + } + public static void SetTopBarRedTeamNameColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarRedTeamNameColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarRedTeamNameColor = colorValue; + } + } + public static void SetTopBarRedTeamWinLossColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarRedTeamWinLossColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarRedTeamWinLossColor = colorValue; + } + } + public static void SetTopBarRedTeamScoreColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarRedTeamScoreColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarRedTeamScoreColor = colorValue; + } + } + public static void SetTopBarTimerTextColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarTimerTextColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarTimerTextColor = colorValue; + } + } + public static void SetTopBarTimerColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView1Page.formatingData.TopBarTimerColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView1Page.formatingData.TopBarTimerColor = colorValue; + } + } + + + + + + + + + + + + + public static void ChampionInfoBackgroundColorSubmit() + { + EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg = textValueOverlayView1.ChampionInfoBackgroundColorDeg.ToString(); + EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1 = textValueOverlayView1.ChampionInfoBackgroundColorPercent1.ToString(); + EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2 = textValueOverlayView1.ChampionInfoBackgroundColorPercent2.ToString(); + EndGameView1Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + + public static void SetChampionInfoBackgroundColorColor1() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1 = colorValue; + EndGameView1Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + } + public static void SetChampionInfoBackgroundColorColor2() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2 = colorValue; + EndGameView1Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView1Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView1Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + } + public static void ChampionInfoBorderColorSubmit() + { + EndGameView1Page.formatingData.ChampionInfoBorderColor = textValueOverlayView1.ChampionInfoBorderColor.ToString() + "px solid " + ChampionInfoBorderColorNotSet; + } + public static string TempsChampionInfoBorderColor() + { + string[] tempsColor = EndGameView1Page.formatingData.ChampionInfoBorderColor.Split(" "); + return tempsColor[2]; + } + public static string ChampionInfoBorderColorNotSet = EndGameView1Page.formatingData.ChampionInfoBorderColor.Split(" ")[2]; + public static void SetChampionInfoBorderColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + string[] tempsBorderColor = EndGameView1Page.formatingData.ChampionInfoBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + ChampionInfoBorderColorNotSet = colorValue; + } + } + public static void SetChampionInfoTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoTextColor = colorValue; + } + } + public static void SetChampionInfoBlueBarColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoBlueBarColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoBlueBarColor = colorValue; + } + } + public static void SetChampionInfoBlueDegaTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoBlueDegaTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoBlueDegaTextColor = colorValue; + } + } + public static void SetChampionInfoRedBarColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoRedBarColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoRedBarColor = colorValue; + } + } + public static void SetChampionInfoRedDegaTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView1Page.formatingData.ChampionInfoRedDegaTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView1Page.formatingData.ChampionInfoRedDegaTextColor = colorValue; + } + } + + + + + + + + + + + public static void BansBackgroundColorSubmit() + { + EndGameView1Page.formatingData.BansBackgroundColorDeg = textValueOverlayView1.BansBackgroundColorDeg.ToString(); + EndGameView1Page.formatingData.BansBackgroundColorPercent1 = textValueOverlayView1.BansBackgroundColorPercent1.ToString(); + EndGameView1Page.formatingData.BansBackgroundColorPercent2 = textValueOverlayView1.BansBackgroundColorPercent2.ToString(); + EndGameView1Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView1Page.formatingData.BansBackgroundColorColor1} {EndGameView1Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView1Page.formatingData.BansBackgroundColorColor2} {EndGameView1Page.formatingData.BansBackgroundColorPercent2}%)"; + } + + public static void SetBansBackgroundColorColor1() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView1Page.formatingData.BansBackgroundColorColor1; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView1Page.formatingData.BansBackgroundColorColor1 = colorValue; + EndGameView1Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView1Page.formatingData.BansBackgroundColorColor1} {EndGameView1Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView1Page.formatingData.BansBackgroundColorColor2} {EndGameView1Page.formatingData.BansBackgroundColorPercent2}%)"; + } + } + public static void SetBansBackgroundColorColor2() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView1Page.formatingData.BansBackgroundColorColor2; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView1Page.formatingData.BansBackgroundColorColor2 = colorValue; + EndGameView1Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView1Page.formatingData.BansBackgroundColorColor1} {EndGameView1Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView1Page.formatingData.BansBackgroundColorColor2} {EndGameView1Page.formatingData.BansBackgroundColorPercent2}%)"; + } + } + public static void BansBorderColorSubmit() + { + EndGameView1Page.formatingData.BansBorderColor = textValueOverlayView1.BansBorderColor.ToString() + "px solid " + BansBorderColorNotSet; + } + public static string TempsBansBorderColor() + { + string[] tempsColor = EndGameView1Page.formatingData.BansBorderColor.Split(" "); + return tempsColor[2]; + } + public static string BansBorderColorNotSet = EndGameView1Page.formatingData.BansBorderColor.Split(" ")[2]; + public static void SetBansBorderColor() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + string[] tempsBorderColor = EndGameView1Page.formatingData.BansBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1Bans = "hidden"; + BansBorderColorNotSet = colorValue; + } + } + + public static void SetBansTextColor() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView1Page.formatingData.BansTextColor; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView1Page.formatingData.BansTextColor = colorValue; + } + } + + + + + + + + + + + + + + + + + public static void GlobalStatsBackgroundColorSubmit() + { + EndGameView1Page.formatingData.GlobalStatsBackgroundColorDeg = textValueOverlayView1.GlobalStatsBackgroundColorDeg.ToString(); + EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1 = textValueOverlayView1.GlobalStatsBackgroundColorPercent1.ToString(); + EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2 = textValueOverlayView1.GlobalStatsBackgroundColorPercent2.ToString(); + EndGameView1Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.GlobalStatsBackgroundColorDeg}deg, {EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1} {EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + + public static void SetGlobalStatsBackgroundColorColor1() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1 = colorValue; + EndGameView1Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.GlobalStatsBackgroundColorDeg}deg, {EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor1} {EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + } + public static void SetGlobalStatsBackgroundColorColor2() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2 = colorValue; + EndGameView1Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView1Page.formatingData.BansBackgroundColorColor1} {EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView1Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView1Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + } + public static void GlobalStatsBorderColorSubmit() + { + EndGameView1Page.formatingData.GlobalStatsBorderColor = textValueOverlayView1.GlobalStatsBorderColor.ToString() + "px solid " + GlobalStatsBorderColorNotSet; + } + public static string TempsGlobalStatsBorderColor() + { + string[] tempsColor = EndGameView1Page.formatingData.GlobalStatsBorderColor.Split(" "); + return tempsColor[2]; + } + public static string GlobalStatsBorderColorNotSet = EndGameView1Page.formatingData.GlobalStatsBorderColor.Split(" ")[2]; + public static void SetGlobalStatsBorderColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + string[] tempsBorderColor = EndGameView1Page.formatingData.GlobalStatsBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + GlobalStatsBorderColorNotSet = colorValue; + } + } + public static void SetGlobalStatsTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView1Page.formatingData.GlobalStatsTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView1Page.formatingData.GlobalStatsTextColor = colorValue; + } + } + + public static void SetGlobalStatsBlueTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView1Page.formatingData.GlobalStatsBlueTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView1Page.formatingData.GlobalStatsBlueTextColor = colorValue; + } + } + + public static void SetGlobalStatsRedTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView1Page.formatingData.GlobalStatsRedTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView1Page.formatingData.GlobalStatsRedTextColor = colorValue; + } + } + + + + + + + + public static void GoldDiffBackgroundColorSubmit() + { + EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg = textValueOverlayView1.GoldDiffBackgroundColorDeg.ToString(); + EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1 = textValueOverlayView1.GoldDiffBackgroundColorPercent1.ToString(); + EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2 = textValueOverlayView1.GoldDiffBackgroundColorPercent2.ToString(); + EndGameView1Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + + public static void SetGoldDiffBackgroundColorColor1() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1 = colorValue; + EndGameView1Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + } + public static void SetGoldDiffBackgroundColorColor2() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2 = colorValue; + EndGameView1Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView1Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView1Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView1Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView1Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + } + public static void GoldDiffBorderColorSubmit() + { + EndGameView1Page.formatingData.GoldDiffBorderColor = textValueOverlayView1.GoldDiffBorderColor.ToString() + "px solid " + GoldDiffBorderColorNotSet; + } + public static string TempsGoldDiffBorderColor() + { + string[] tempsColor = EndGameView1Page.formatingData.GoldDiffBorderColor.Split(" "); + return tempsColor[2]; + } + public static string GoldDiffBorderColorNotSet = EndGameView1Page.formatingData.GoldDiffBorderColor.Split(" ")[2]; + public static void SetGoldDiffBorderColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + string[] tempsBorderColor = EndGameView1Page.formatingData.GoldDiffBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + GoldDiffBorderColorNotSet = colorValue; + } + } + public static void GoldDiffBarColorSubmit() + { + EndGameView1Page.formatingData.GoldDiffBarColor = textValueOverlayView1.GoldDiffBarColor.ToString() + "px dashed " + GoldDiffBarColorNotSet; + } + public static string TempsGoldDiffBarColor() + { + string[] tempsColor = EndGameView1Page.formatingData.GoldDiffBarColor.Split(" "); + return tempsColor[2]; + } + public static string GoldDiffBarColorNotSet = EndGameView1Page.formatingData.GoldDiffBarColor.Split(" ")[2]; + public static void SetGoldDiffBarColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + string[] tempsBorderColor = EndGameView1Page.formatingData.GoldDiffBarColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + GoldDiffBarColorNotSet = colorValue; + } + } + public static void SetGoldDiffTextColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffTextColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffTextColor = colorValue; + } + } + public static void SetGoldDiffBlueTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffBlueTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffBlueTextGoldColor = colorValue; + } + } + public static void SetGoldDiffRedTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffRedTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffRedTextGoldColor = colorValue; + } + } + public static void SetGoldDiffZeroTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffZeroTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffZeroTextGoldColor = colorValue; + } + } + public static void SetGoldDiffBluePointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffBluePointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffBluePointGoldColor = colorValue; + } + } + public static void SetGoldDiffRedPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffRedPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffRedPointGoldColor = colorValue; + } + } + public static void SetGoldDiffZeroPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffZeroPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffZeroPointGoldColor = colorValue; + } + } + public static void SetGoldDiffStartEndPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffStartEndPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffStartEndPointGoldColor = colorValue; + } + } + public static void SetGoldDiffLinkPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView1Page.formatingData.GoldDiffLinkPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView1Page.formatingData.GoldDiffLinkPointGoldColor = colorValue; + } + } + } + + //view 2 + public class TextValueOverlayView2 + { + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarBlueTeamName { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarRedTeamName { get; set; } + [StringLength(5, ErrorMessage = "Name is too long (5 character limit).")] + public string? TopBarBlueTeamScore { get; set; } + [StringLength(5, ErrorMessage = "Name is too long (5 character limit).")] + public string? TopBarRedTeamScore { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarTimerText { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? ChampionInfoText { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? GoldDiffText { get; set; } + + public bool BackgroundColor { get; set; } = true; + public bool TopBarGradiant { get; set; } = true; + public bool ChampionInfoGradiant { get; set; } = true; + public bool BansGradiant { get; set; } = true; + public bool GlobalStatsGradiant { get; set; } = true; + public bool GoldDiffGradiant { get; set; } = true; + + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroundColorPercent2 { get; set; } = 100; + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int TopBarBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int TopBarBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int TopBarBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int ChampionInfoBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int ChampionInfoBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int ChampionInfoBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BansBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BansBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BansBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int GlobalStatsBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GlobalStatsBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GlobalStatsBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int GoldDiffBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GoldDiffBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GoldDiffBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int TopBarBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int ChampionInfoBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int BansBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GlobalStatsBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GoldDiffBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GoldDiffBarColor { get; set; } = 1; + + public static void TopBarBlueTeamNameSubmit() + { + EndGameView2Page.formatingData.TopBarBlueTeamName = textValueOverlayView2.TopBarBlueTeamName; + } + public static void TopBarRedTeamNameSubmit() + { + EndGameView2Page.formatingData.TopBarRedTeamName = textValueOverlayView2.TopBarRedTeamName; + } + public static void TopBarBlueTeamScoreSubmit() + { + EndGameView2Page.formatingData.TopBarBlueTeamScore = textValueOverlayView2.TopBarBlueTeamScore; + } + public static void TopBarRedTeamScoreSubmit() + { + EndGameView2Page.formatingData.TopBarRedTeamScore = textValueOverlayView2.TopBarRedTeamScore; + } + public static void SwitchSideRedBlue() + { + string tempsTopBarBlueTeamName = EndGameView2Page.formatingData.TopBarBlueTeamName; + string tempsTopBarBlueTeamScore = EndGameView2Page.formatingData.TopBarBlueTeamScore; + string tempsTopBarRedTeamName = EndGameView2Page.formatingData.TopBarRedTeamName; + string tempsTopBarRedTeamScore = EndGameView2Page.formatingData.TopBarRedTeamScore; + string tempsRextValueOverlayView2TopBarBlueTeamName = textValueOverlayView2.TopBarBlueTeamName; + string tempsRextValueOverlayView2TopBarBlueTeamScore = textValueOverlayView2.TopBarBlueTeamScore; + string tempsRextValueOverlayView2TopBarRedTeamName = textValueOverlayView2.TopBarRedTeamName; + string tempsRextValueOverlayView2TopBarRedTeamScore = textValueOverlayView2.TopBarRedTeamScore; + EndGameView2Page.formatingData.TopBarBlueTeamName = tempsTopBarRedTeamName; + EndGameView2Page.formatingData.TopBarBlueTeamScore = tempsTopBarRedTeamScore; + EndGameView2Page.formatingData.TopBarRedTeamName = tempsTopBarBlueTeamName; + EndGameView2Page.formatingData.TopBarRedTeamScore = tempsTopBarBlueTeamScore; + textValueOverlayView2.TopBarBlueTeamName = tempsRextValueOverlayView2TopBarRedTeamName; + textValueOverlayView2.TopBarBlueTeamScore = tempsRextValueOverlayView2TopBarRedTeamScore; + textValueOverlayView2.TopBarRedTeamName = tempsRextValueOverlayView2TopBarBlueTeamName; + textValueOverlayView2.TopBarRedTeamScore = tempsRextValueOverlayView2TopBarBlueTeamScore; + } + + public static void TopBarGradiantSubmit() + { + } + public static void ChampionInfoGradiantSubmit() + { + } + public static void BansGradiantSubmit() + { + } + public static void GlobalStatsGradiantSubmit() + { + } + public static void GoldDiffGradiantSubmit() + { + } + + + + public static void BackgroundColorSubmit() + { + EndGameView2Page.formatingData.BackgroundColorDeg = textValueOverlayView2.BackgroundColorDeg.ToString(); + EndGameView2Page.formatingData.BackgroundColorPercent1 = textValueOverlayView2.BackgroundColorPercent1.ToString(); + EndGameView2Page.formatingData.BackgroundColorPercent2 = textValueOverlayView2.BackgroundColorPercent2.ToString(); + EndGameView2Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BackgroundColorDeg}deg, {EndGameView2Page.formatingData.BackgroundColorColor1} {EndGameView2Page.formatingData.BackgroundColorPercent1}%, {EndGameView2Page.formatingData.BackgroundColorColor2} {EndGameView2Page.formatingData.BackgroundColorPercent2}%)"; + } + + public static void SetBackgroundColorColor1() + { + if (colorPickerOverlay1.Equals("hidden")) + { + colorPickerOverlay1 = "visible"; + colorValue = EndGameView2Page.formatingData.BackgroundColorColor1; + } + else + { + colorPickerOverlay1 = "hidden"; + EndGameView2Page.formatingData.BackgroundColorColor1 = colorValue; + EndGameView2Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BackgroundColorDeg}deg, {EndGameView2Page.formatingData.BackgroundColorColor1} {EndGameView2Page.formatingData.BackgroundColorPercent1}%, {EndGameView2Page.formatingData.BackgroundColorColor2} {EndGameView2Page.formatingData.BackgroundColorPercent2}%)"; + } + } + public static void SetBackgroundColorColor2() + { + if (colorPickerOverlay1.Equals("hidden")) + { + colorPickerOverlay1 = "visible"; + colorValue = EndGameView2Page.formatingData.BackgroundColorColor2; + } + else + { + colorPickerOverlay1 = "hidden"; + EndGameView2Page.formatingData.BackgroundColorColor2 = colorValue; + EndGameView2Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BackgroundColorDeg}deg, {EndGameView2Page.formatingData.BackgroundColorColor1} {EndGameView2Page.formatingData.BackgroundColorPercent1}%, {EndGameView2Page.formatingData.BackgroundColorColor2} {EndGameView2Page.formatingData.BackgroundColorPercent2}%)"; + } + } + + public static void BackgroundColorEnableDisableSubmit() + { + + } + + + + + + + + + + + + public static void TopBarBackgroundColorSubmit() + { + EndGameView2Page.formatingData.TopBarBackgroundColorDeg = textValueOverlayView2.TopBarBackgroundColorDeg.ToString(); + EndGameView2Page.formatingData.TopBarBackgroundColorPercent1 = textValueOverlayView2.TopBarBackgroundColorPercent1.ToString(); + EndGameView2Page.formatingData.TopBarBackgroundColorPercent2 = textValueOverlayView2.TopBarBackgroundColorPercent2.ToString(); + EndGameView2Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView2Page.formatingData.TopBarBackgroundColorColor1} {EndGameView2Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView2Page.formatingData.TopBarBackgroundColorColor2} {EndGameView2Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + + public static void SetTopBarBackgroundColorColor1() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarBackgroundColorColor1; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarBackgroundColorColor1 = colorValue; + EndGameView2Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView2Page.formatingData.TopBarBackgroundColorColor1} {EndGameView2Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView2Page.formatingData.TopBarBackgroundColorColor2} {EndGameView2Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + } + public static void SetTopBarBackgroundColorColor2() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarBackgroundColorColor2; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarBackgroundColorColor2 = colorValue; + EndGameView2Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView2Page.formatingData.TopBarBackgroundColorColor1} {EndGameView2Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView2Page.formatingData.TopBarBackgroundColorColor2} {EndGameView2Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + } + + public static void TopBarBorderColorSubmit() + { + EndGameView2Page.formatingData.TopBarBorderColor = textValueOverlayView2.TopBarBorderColor.ToString() + "px solid " + TopBarBorderColorNotSet; + } + public static string TempsTopBarBorderColor() + { + string[] tempsColor = EndGameView2Page.formatingData.TopBarBorderColor.Split(" "); + return tempsColor[2]; + } + public static string TopBarBorderColorNotSet = EndGameView2Page.formatingData.TopBarBorderColor.Split(" ")[2]; + public static void SetTopBarBorderColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + string[] tempsBorderColor = EndGameView2Page.formatingData.TopBarBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + TopBarBorderColorNotSet = colorValue; + } + } + + public static void SetTopBarBlueTeamNameColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarBlueTeamNameColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarBlueTeamNameColor = colorValue; + } + } + public static void SetTopBarBlueTeamWinLossColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarBlueTeamWinLossColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarBlueTeamWinLossColor = colorValue; + } + } + public static void SetTopBarBlueTeamScoreColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarBlueTeamScoreColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarBlueTeamScoreColor = colorValue; + } + } + public static void SetTopBarRedTeamNameColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarRedTeamNameColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarRedTeamNameColor = colorValue; + } + } + public static void SetTopBarRedTeamWinLossColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarRedTeamWinLossColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarRedTeamWinLossColor = colorValue; + } + } + public static void SetTopBarRedTeamScoreColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarRedTeamScoreColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarRedTeamScoreColor = colorValue; + } + } + public static void SetTopBarTimerTextColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarTimerTextColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarTimerTextColor = colorValue; + } + } + public static void SetTopBarTimerColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView2Page.formatingData.TopBarTimerColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView2Page.formatingData.TopBarTimerColor = colorValue; + } + } + + + + + + + + + + + + + public static void ChampionInfoBackgroundColorSubmit() + { + EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg = textValueOverlayView2.ChampionInfoBackgroundColorDeg.ToString(); + EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1 = textValueOverlayView2.ChampionInfoBackgroundColorPercent1.ToString(); + EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2 = textValueOverlayView2.ChampionInfoBackgroundColorPercent2.ToString(); + EndGameView2Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + + public static void SetChampionInfoBackgroundColorColor1() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1 = colorValue; + EndGameView2Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + } + public static void SetChampionInfoBackgroundColorColor2() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2 = colorValue; + EndGameView2Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView2Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView2Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + } + public static void ChampionInfoBorderColorSubmit() + { + EndGameView2Page.formatingData.ChampionInfoBorderColor = textValueOverlayView2.ChampionInfoBorderColor.ToString() + "px solid " + ChampionInfoBorderColorNotSet; + } + public static string TempsChampionInfoBorderColor() + { + string[] tempsColor = EndGameView2Page.formatingData.ChampionInfoBorderColor.Split(" "); + return tempsColor[2]; + } + public static string ChampionInfoBorderColorNotSet = EndGameView2Page.formatingData.ChampionInfoBorderColor.Split(" ")[2]; + public static void SetChampionInfoBorderColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + string[] tempsBorderColor = EndGameView2Page.formatingData.ChampionInfoBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + ChampionInfoBorderColorNotSet = colorValue; + } + } + public static void SetChampionInfoTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoTextColor = colorValue; + } + } + public static void SetChampionInfoBlueBarColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoBlueBarColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoBlueBarColor = colorValue; + } + } + public static void SetChampionInfoBlueDegaTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoBlueDegaTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoBlueDegaTextColor = colorValue; + } + } + public static void SetChampionInfoRedBarColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoRedBarColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoRedBarColor = colorValue; + } + } + public static void SetChampionInfoRedDegaTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView2Page.formatingData.ChampionInfoRedDegaTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView2Page.formatingData.ChampionInfoRedDegaTextColor = colorValue; + } + } + + + + + + + + + + + public static void BansBackgroundColorSubmit() + { + EndGameView2Page.formatingData.BansBackgroundColorDeg = textValueOverlayView2.BansBackgroundColorDeg.ToString(); + EndGameView2Page.formatingData.BansBackgroundColorPercent1 = textValueOverlayView2.BansBackgroundColorPercent1.ToString(); + EndGameView2Page.formatingData.BansBackgroundColorPercent2 = textValueOverlayView2.BansBackgroundColorPercent2.ToString(); + EndGameView2Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView2Page.formatingData.BansBackgroundColorColor1} {EndGameView2Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView2Page.formatingData.BansBackgroundColorColor2} {EndGameView2Page.formatingData.BansBackgroundColorPercent2}%)"; + } + + public static void SetBansBackgroundColorColor1() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView2Page.formatingData.BansBackgroundColorColor1; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView2Page.formatingData.BansBackgroundColorColor1 = colorValue; + EndGameView2Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView2Page.formatingData.BansBackgroundColorColor1} {EndGameView2Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView2Page.formatingData.BansBackgroundColorColor2} {EndGameView2Page.formatingData.BansBackgroundColorPercent2}%)"; + } + } + public static void SetBansBackgroundColorColor2() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView2Page.formatingData.BansBackgroundColorColor2; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView2Page.formatingData.BansBackgroundColorColor2 = colorValue; + EndGameView2Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView2Page.formatingData.BansBackgroundColorColor1} {EndGameView2Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView2Page.formatingData.BansBackgroundColorColor2} {EndGameView2Page.formatingData.BansBackgroundColorPercent2}%)"; + } + } + public static void BansBorderColorSubmit() + { + EndGameView2Page.formatingData.BansBorderColor = textValueOverlayView2.BansBorderColor.ToString() + "px solid " + BansBorderColorNotSet; + } + public static string TempsBansBorderColor() + { + string[] tempsColor = EndGameView2Page.formatingData.BansBorderColor.Split(" "); + return tempsColor[2]; + } + public static string BansBorderColorNotSet = EndGameView2Page.formatingData.BansBorderColor.Split(" ")[2]; + public static void SetBansBorderColor() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + string[] tempsBorderColor = EndGameView2Page.formatingData.BansBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1Bans = "hidden"; + BansBorderColorNotSet = colorValue; + } + } + + public static void SetBansTextColor() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView2Page.formatingData.BansTextColor; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView2Page.formatingData.BansTextColor = colorValue; + } + } + + + + + + + + + + + + + + + + + public static void GlobalStatsBackgroundColorSubmit() + { + EndGameView2Page.formatingData.GlobalStatsBackgroundColorDeg = textValueOverlayView2.GlobalStatsBackgroundColorDeg.ToString(); + EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1 = textValueOverlayView2.GlobalStatsBackgroundColorPercent1.ToString(); + EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2 = textValueOverlayView2.GlobalStatsBackgroundColorPercent2.ToString(); + EndGameView2Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.GlobalStatsBackgroundColorDeg}deg, {EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1} {EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + + public static void SetGlobalStatsBackgroundColorColor1() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1 = colorValue; + EndGameView2Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.GlobalStatsBackgroundColorDeg}deg, {EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor1} {EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + } + public static void SetGlobalStatsBackgroundColorColor2() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2 = colorValue; + EndGameView2Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView2Page.formatingData.BansBackgroundColorColor1} {EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView2Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView2Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + } + public static void GlobalStatsBorderColorSubmit() + { + EndGameView2Page.formatingData.GlobalStatsBorderColor = textValueOverlayView2.GlobalStatsBorderColor.ToString() + "px solid " + GlobalStatsBorderColorNotSet; + } + public static string TempsGlobalStatsBorderColor() + { + string[] tempsColor = EndGameView2Page.formatingData.GlobalStatsBorderColor.Split(" "); + return tempsColor[2]; + } + public static string GlobalStatsBorderColorNotSet = EndGameView2Page.formatingData.GlobalStatsBorderColor.Split(" ")[2]; + public static void SetGlobalStatsBorderColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + string[] tempsBorderColor = EndGameView2Page.formatingData.GlobalStatsBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + GlobalStatsBorderColorNotSet = colorValue; + } + } + public static void SetGlobalStatsTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView2Page.formatingData.GlobalStatsTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView2Page.formatingData.GlobalStatsTextColor = colorValue; + } + } + + public static void SetGlobalStatsBlueTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView2Page.formatingData.GlobalStatsBlueTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView2Page.formatingData.GlobalStatsBlueTextColor = colorValue; + } + } + + public static void SetGlobalStatsRedTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView2Page.formatingData.GlobalStatsRedTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView2Page.formatingData.GlobalStatsRedTextColor = colorValue; + } + } + + + + + + + + public static void GoldDiffBackgroundColorSubmit() + { + EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg = textValueOverlayView2.GoldDiffBackgroundColorDeg.ToString(); + EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1 = textValueOverlayView2.GoldDiffBackgroundColorPercent1.ToString(); + EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2 = textValueOverlayView2.GoldDiffBackgroundColorPercent2.ToString(); + EndGameView2Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + + public static void SetGoldDiffBackgroundColorColor1() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1 = colorValue; + EndGameView2Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + } + public static void SetGoldDiffBackgroundColorColor2() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2 = colorValue; + EndGameView2Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView2Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView2Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView2Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView2Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + } + public static void GoldDiffBorderColorSubmit() + { + EndGameView2Page.formatingData.GoldDiffBorderColor = textValueOverlayView2.GoldDiffBorderColor.ToString() + "px solid " + GoldDiffBorderColorNotSet; + } + public static string TempsGoldDiffBorderColor() + { + string[] tempsColor = EndGameView2Page.formatingData.GoldDiffBorderColor.Split(" "); + return tempsColor[2]; + } + public static string GoldDiffBorderColorNotSet = EndGameView2Page.formatingData.GoldDiffBorderColor.Split(" ")[2]; + public static void SetGoldDiffBorderColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + string[] tempsBorderColor = EndGameView2Page.formatingData.GoldDiffBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + GoldDiffBorderColorNotSet = colorValue; + } + } + public static void GoldDiffBarColorSubmit() + { + EndGameView2Page.formatingData.GoldDiffBarColor = textValueOverlayView2.GoldDiffBarColor.ToString() + "px dashed " + GoldDiffBarColorNotSet; + } + public static string TempsGoldDiffBarColor() + { + string[] tempsColor = EndGameView2Page.formatingData.GoldDiffBarColor.Split(" "); + return tempsColor[2]; + } + public static string GoldDiffBarColorNotSet = EndGameView2Page.formatingData.GoldDiffBarColor.Split(" ")[2]; + public static void SetGoldDiffBarColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + string[] tempsBorderColor = EndGameView2Page.formatingData.GoldDiffBarColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + GoldDiffBarColorNotSet = colorValue; + } + } + public static void SetGoldDiffTextColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffTextColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffTextColor = colorValue; + } + } + + public static void SetGoldDiffBlueTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffBlueTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffBlueTextGoldColor = colorValue; + } + } + public static void SetGoldDiffRedTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffRedTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffRedTextGoldColor = colorValue; + } + } + public static void SetGoldDiffZeroTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffZeroTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffZeroTextGoldColor = colorValue; + } + } + public static void SetGoldDiffBluePointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffBluePointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffBluePointGoldColor = colorValue; + } + } + public static void SetGoldDiffRedPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffRedPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffRedPointGoldColor = colorValue; + } + } + public static void SetGoldDiffZeroPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffZeroPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffZeroPointGoldColor = colorValue; + } + } + public static void SetGoldDiffStartEndPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffStartEndPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffStartEndPointGoldColor = colorValue; + } + } + public static void SetGoldDiffLinkPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView2Page.formatingData.GoldDiffLinkPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView2Page.formatingData.GoldDiffLinkPointGoldColor = colorValue; + } + } + } + + //view 3 + public class TextValueOverlayView3 + { + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarBlueTeamName { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarRedTeamName { get; set; } + [StringLength(5, ErrorMessage = "Name is too long (5 character limit).")] + public string? TopBarBlueTeamScore { get; set; } + [StringLength(5, ErrorMessage = "Name is too long (5 character limit).")] + public string? TopBarRedTeamScore { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? TopBarTimerText { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? ChampionInfoText { get; set; } + [StringLength(20, ErrorMessage = "Name is too long (20 character limit).")] + public string? GoldDiffText { get; set; } + + public bool BackgroundColor { get; set; } = true; + public bool TopBarGradiant { get; set; } = false; + public bool ChampionInfoGradiant { get; set; } = false; + public bool BansGradiant { get; set; } = false; + public bool GlobalStatsGradiant { get; set; } = false; + public bool GoldDiffGradiant { get; set; } = false; + public bool TopBarBackground { get; set; } = false; + public bool ChampionInfoBackground { get; set; } = false; + public bool BansBackground { get; set; } = false; + public bool GlobalStatsBackground { get; set; } = false; + public bool GoldDiffBackground { get; set; } = false; + + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroundColorPercent2 { get; set; } = 100; + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int TopBarBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int TopBarBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int TopBarBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int ChampionInfoBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int ChampionInfoBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int ChampionInfoBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BansBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BansBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BansBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int GlobalStatsBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GlobalStatsBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GlobalStatsBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int GoldDiffBackgroundColorDeg { get; set; } = 90; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GoldDiffBackgroundColorPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int GoldDiffBackgroundColorPercent2 { get; set; } = 100; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int TopBarBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int ChampionInfoBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int BansBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GlobalStatsBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GlobalStatsSeparationColor { get; set; } = 2; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GoldDiffBorderColor { get; set; } = 5; + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int GoldDiffBarColor { get; set; } = 1; + + + public static void TopBarBlueTeamNameSubmit() + { + EndGameView3Page.formatingData.TopBarBlueTeamName = textValueOverlayView3.TopBarBlueTeamName; + } + public static void TopBarRedTeamNameSubmit() + { + EndGameView3Page.formatingData.TopBarRedTeamName = textValueOverlayView3.TopBarRedTeamName; + } + public static void TopBarBlueTeamScoreSubmit() + { + EndGameView3Page.formatingData.TopBarBlueTeamScore = textValueOverlayView3.TopBarBlueTeamScore; + } + public static void TopBarRedTeamScoreSubmit() + { + EndGameView3Page.formatingData.TopBarRedTeamScore = textValueOverlayView3.TopBarRedTeamScore; + } + public static void SwitchSideRedBlue() + { + string tempsTopBarBlueTeamName = EndGameView3Page.formatingData.TopBarBlueTeamName; + string tempsTopBarBlueTeamScore = EndGameView3Page.formatingData.TopBarBlueTeamScore; + string tempsTopBarRedTeamName = EndGameView3Page.formatingData.TopBarRedTeamName; + string tempsTopBarRedTeamScore = EndGameView3Page.formatingData.TopBarRedTeamScore; + string tempsRextValueOverlayView3TopBarBlueTeamName = textValueOverlayView3.TopBarBlueTeamName; + string tempsRextValueOverlayView3TopBarBlueTeamScore = textValueOverlayView3.TopBarBlueTeamScore; + string tempsRextValueOverlayView3TopBarRedTeamName = textValueOverlayView3.TopBarRedTeamName; + string tempsRextValueOverlayView3TopBarRedTeamScore = textValueOverlayView3.TopBarRedTeamScore; + EndGameView3Page.formatingData.TopBarBlueTeamName = tempsTopBarRedTeamName; + EndGameView3Page.formatingData.TopBarBlueTeamScore = tempsTopBarRedTeamScore; + EndGameView3Page.formatingData.TopBarRedTeamName = tempsTopBarBlueTeamName; + EndGameView3Page.formatingData.TopBarRedTeamScore = tempsTopBarBlueTeamScore; + textValueOverlayView3.TopBarBlueTeamName = tempsRextValueOverlayView3TopBarRedTeamName; + textValueOverlayView3.TopBarBlueTeamScore = tempsRextValueOverlayView3TopBarRedTeamScore; + textValueOverlayView3.TopBarRedTeamName = tempsRextValueOverlayView3TopBarBlueTeamName; + textValueOverlayView3.TopBarRedTeamScore = tempsRextValueOverlayView3TopBarBlueTeamScore; + } + + public static void TopBarBackgroundSubmit() + { + } + public static void ChampionInfoBackgroundSubmit() + { + } + public static void BansBackgroundSubmit() + { + } + public static void GlobalStatsBackgroundSubmit() + { + } + public static void GoldDiffBackgroundSubmit() + { + } + public static void TopBarGradiantSubmit() + { + } + public static void ChampionInfoGradiantSubmit() + { + } + public static void BansGradiantSubmit() + { + } + public static void GlobalStatsGradiantSubmit() + { + } + public static void GoldDiffGradiantSubmit() + { + } + + + + public static void BackgroundColorSubmit() + { + EndGameView3Page.formatingData.BackgroundColorDeg = textValueOverlayView3.BackgroundColorDeg.ToString(); + EndGameView3Page.formatingData.BackgroundColorPercent1 = textValueOverlayView3.BackgroundColorPercent1.ToString(); + EndGameView3Page.formatingData.BackgroundColorPercent2 = textValueOverlayView3.BackgroundColorPercent2.ToString(); + EndGameView3Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BackgroundColorDeg}deg, {EndGameView3Page.formatingData.BackgroundColorColor1} {EndGameView3Page.formatingData.BackgroundColorPercent1}%, {EndGameView3Page.formatingData.BackgroundColorColor2} {EndGameView3Page.formatingData.BackgroundColorPercent2}%)"; + } + + public static void SetBackgroundColorColor1() + { + if (colorPickerOverlay1.Equals("hidden")) + { + colorPickerOverlay1 = "visible"; + colorValue = EndGameView3Page.formatingData.BackgroundColorColor1; + } + else + { + colorPickerOverlay1 = "hidden"; + EndGameView3Page.formatingData.BackgroundColorColor1 = colorValue; + EndGameView3Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BackgroundColorDeg}deg, {EndGameView3Page.formatingData.BackgroundColorColor1} {EndGameView3Page.formatingData.BackgroundColorPercent1}%, {EndGameView3Page.formatingData.BackgroundColorColor2} {EndGameView3Page.formatingData.BackgroundColorPercent2}%)"; + } + } + public static void SetBackgroundColorColor2() + { + if (colorPickerOverlay1.Equals("hidden")) + { + colorPickerOverlay1 = "visible"; + colorValue = EndGameView3Page.formatingData.BackgroundColorColor2; + } + else + { + colorPickerOverlay1 = "hidden"; + EndGameView3Page.formatingData.BackgroundColorColor2 = colorValue; + EndGameView3Page.formatingData.BackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BackgroundColorDeg}deg, {EndGameView3Page.formatingData.BackgroundColorColor1} {EndGameView3Page.formatingData.BackgroundColorPercent1}%, {EndGameView3Page.formatingData.BackgroundColorColor2} {EndGameView3Page.formatingData.BackgroundColorPercent2}%)"; + } + } + + public static void BackgroundColorEnableDisableSubmit() + { + + } + + + + + + + + + + + + public static void TopBarBackgroundColorSubmit() + { + EndGameView3Page.formatingData.TopBarBackgroundColorDeg = textValueOverlayView3.TopBarBackgroundColorDeg.ToString(); + EndGameView3Page.formatingData.TopBarBackgroundColorPercent1 = textValueOverlayView3.TopBarBackgroundColorPercent1.ToString(); + EndGameView3Page.formatingData.TopBarBackgroundColorPercent2 = textValueOverlayView3.TopBarBackgroundColorPercent2.ToString(); + EndGameView3Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView3Page.formatingData.TopBarBackgroundColorColor1} {EndGameView3Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView3Page.formatingData.TopBarBackgroundColorColor2} {EndGameView3Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + + public static void SetTopBarBackgroundColorColor1() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarBackgroundColorColor1; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarBackgroundColorColor1 = colorValue; + EndGameView3Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView3Page.formatingData.TopBarBackgroundColorColor1} {EndGameView3Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView3Page.formatingData.TopBarBackgroundColorColor2} {EndGameView3Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + } + public static void SetTopBarBackgroundColorColor2() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarBackgroundColorColor2; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarBackgroundColorColor2 = colorValue; + EndGameView3Page.formatingData.TopBarBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.TopBarBackgroundColorDeg}deg, {EndGameView3Page.formatingData.TopBarBackgroundColorColor1} {EndGameView3Page.formatingData.TopBarBackgroundColorPercent1}%, {EndGameView3Page.formatingData.TopBarBackgroundColorColor2} {EndGameView3Page.formatingData.TopBarBackgroundColorPercent2}%)"; + } + } + + public static void TopBarBorderColorSubmit() + { + EndGameView3Page.formatingData.TopBarBorderColor = textValueOverlayView3.TopBarBorderColor.ToString() + "px solid " + TopBarBorderColorNotSet; + } + public static string TempsTopBarBorderColor() + { + string[] tempsColor = EndGameView3Page.formatingData.TopBarBorderColor.Split(" "); + return tempsColor[2]; + } + public static string TopBarBorderColorNotSet = EndGameView3Page.formatingData.TopBarBorderColor.Split(" ")[2]; + public static void SetTopBarBorderColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + string[] tempsBorderColor = EndGameView3Page.formatingData.TopBarBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + TopBarBorderColorNotSet = colorValue; + } + } + + public static void SetTopBarBlueTeamNameColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarBlueTeamNameColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarBlueTeamNameColor = colorValue; + } + } + public static void SetTopBarBlueTeamWinLossColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarBlueTeamWinLossColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarBlueTeamWinLossColor = colorValue; + } + } + public static void SetTopBarBlueTeamScoreColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarBlueTeamScoreColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarBlueTeamScoreColor = colorValue; + } + } + public static void SetTopBarRedTeamNameColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarRedTeamNameColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarRedTeamNameColor = colorValue; + } + } + public static void SetTopBarRedTeamWinLossColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarRedTeamWinLossColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarRedTeamWinLossColor = colorValue; + } + } + public static void SetTopBarRedTeamScoreColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarRedTeamScoreColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarRedTeamScoreColor = colorValue; + } + } + public static void SetTopBarTimerTextColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarTimerTextColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarTimerTextColor = colorValue; + } + } + public static void SetTopBarTimerColor() + { + if (colorPickerOverlay1TimerBar.Equals("hidden")) + { + colorPickerOverlay1TimerBar = "visible"; + colorValue = EndGameView3Page.formatingData.TopBarTimerColor; + } + else + { + colorPickerOverlay1TimerBar = "hidden"; + EndGameView3Page.formatingData.TopBarTimerColor = colorValue; + } + } + + + + + + + + + + + + + public static void ChampionInfoBackgroundColorSubmit() + { + EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg = textValueOverlayView3.ChampionInfoBackgroundColorDeg.ToString(); + EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1 = textValueOverlayView3.ChampionInfoBackgroundColorPercent1.ToString(); + EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2 = textValueOverlayView3.ChampionInfoBackgroundColorPercent2.ToString(); + EndGameView3Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + + public static void SetChampionInfoBackgroundColorColor1() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1 = colorValue; + EndGameView3Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + } + public static void SetChampionInfoBackgroundColorColor2() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2 = colorValue; + EndGameView3Page.formatingData.ChampionInfoBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.ChampionInfoBackgroundColorDeg}deg, {EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor1} {EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent1}%, {EndGameView3Page.formatingData.ChampionInfoBackgroundColorColor2} {EndGameView3Page.formatingData.ChampionInfoBackgroundColorPercent2}%)"; + } + } + public static void ChampionInfoBorderColorSubmit() + { + EndGameView3Page.formatingData.ChampionInfoBorderColor = textValueOverlayView3.ChampionInfoBorderColor.ToString() + "px solid " + ChampionInfoBorderColorNotSet; + } + public static string TempsChampionInfoBorderColor() + { + string[] tempsColor = EndGameView3Page.formatingData.ChampionInfoBorderColor.Split(" "); + return tempsColor[2]; + } + public static string ChampionInfoBorderColorNotSet = EndGameView3Page.formatingData.ChampionInfoBorderColor.Split(" ")[2]; + public static void SetChampionInfoBorderColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + string[] tempsBorderColor = EndGameView3Page.formatingData.ChampionInfoBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + ChampionInfoBorderColorNotSet = colorValue; + } + } + public static void SetChampionInfoTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoTextColor = colorValue; + } + } + public static void SetChampionInfoBlueBarColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoBlueBarColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoBlueBarColor = colorValue; + } + } + public static void SetChampionInfoBlueDegaTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoBlueDegaTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoBlueDegaTextColor = colorValue; + } + } + public static void SetChampionInfoRedBarColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoRedBarColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoRedBarColor = colorValue; + } + } + public static void SetChampionInfoRedDegaTextColor() + { + if (colorPickerOverlay1ChampInfo.Equals("hidden")) + { + colorPickerOverlay1ChampInfo = "visible"; + colorValue = EndGameView3Page.formatingData.ChampionInfoRedDegaTextColor; + } + else + { + colorPickerOverlay1ChampInfo = "hidden"; + EndGameView3Page.formatingData.ChampionInfoRedDegaTextColor = colorValue; + } + } + + + + + + + + + + + public static void BansBackgroundColorSubmit() + { + EndGameView3Page.formatingData.BansBackgroundColorDeg = textValueOverlayView3.BansBackgroundColorDeg.ToString(); + EndGameView3Page.formatingData.BansBackgroundColorPercent1 = textValueOverlayView3.BansBackgroundColorPercent1.ToString(); + EndGameView3Page.formatingData.BansBackgroundColorPercent2 = textValueOverlayView3.BansBackgroundColorPercent2.ToString(); + EndGameView3Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView3Page.formatingData.BansBackgroundColorColor1} {EndGameView3Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView3Page.formatingData.BansBackgroundColorColor2} {EndGameView3Page.formatingData.BansBackgroundColorPercent2}%)"; + } + + public static void SetBansBackgroundColorColor1() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView3Page.formatingData.BansBackgroundColorColor1; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView3Page.formatingData.BansBackgroundColorColor1 = colorValue; + EndGameView3Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView3Page.formatingData.BansBackgroundColorColor1} {EndGameView3Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView3Page.formatingData.BansBackgroundColorColor2} {EndGameView3Page.formatingData.BansBackgroundColorPercent2}%)"; + } + } + public static void SetBansBackgroundColorColor2() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView3Page.formatingData.BansBackgroundColorColor2; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView3Page.formatingData.BansBackgroundColorColor2 = colorValue; + EndGameView3Page.formatingData.BansBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView3Page.formatingData.BansBackgroundColorColor1} {EndGameView3Page.formatingData.BansBackgroundColorPercent1}%, {EndGameView3Page.formatingData.BansBackgroundColorColor2} {EndGameView3Page.formatingData.BansBackgroundColorPercent2}%)"; + } + } + public static void BansBorderColorSubmit() + { + EndGameView3Page.formatingData.BansBorderColor = textValueOverlayView3.BansBorderColor.ToString() + "px solid " + BansBorderColorNotSet; + } + public static string TempsBansBorderColor() + { + string[] tempsColor = EndGameView3Page.formatingData.BansBorderColor.Split(" "); + return tempsColor[2]; + } + public static string BansBorderColorNotSet = EndGameView3Page.formatingData.BansBorderColor.Split(" ")[2]; + public static void SetBansBorderColor() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + string[] tempsBorderColor = EndGameView3Page.formatingData.BansBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1Bans = "hidden"; + BansBorderColorNotSet = colorValue; + } + } + + public static void SetBansTextColor() + { + if (colorPickerOverlay1Bans.Equals("hidden")) + { + colorPickerOverlay1Bans = "visible"; + colorValue = EndGameView3Page.formatingData.BansTextColor; + } + else + { + colorPickerOverlay1Bans = "hidden"; + EndGameView3Page.formatingData.BansTextColor = colorValue; + } + } + + + + + + + + + + + + + + + + + public static void GlobalStatsBackgroundColorSubmit() + { + EndGameView3Page.formatingData.GlobalStatsBackgroundColorDeg = textValueOverlayView3.GlobalStatsBackgroundColorDeg.ToString(); + EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1 = textValueOverlayView3.GlobalStatsBackgroundColorPercent1.ToString(); + EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2 = textValueOverlayView3.GlobalStatsBackgroundColorPercent2.ToString(); + EndGameView3Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.GlobalStatsBackgroundColorDeg}deg, {EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1} {EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + + public static void SetGlobalStatsBackgroundColorColor1() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1 = colorValue; + EndGameView3Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.GlobalStatsBackgroundColorDeg}deg, {EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor1} {EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + } + public static void SetGlobalStatsBackgroundColorColor2() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2 = colorValue; + EndGameView3Page.formatingData.GlobalStatsBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.BansBackgroundColorDeg}deg, {EndGameView3Page.formatingData.BansBackgroundColorColor1} {EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent1}%, {EndGameView3Page.formatingData.GlobalStatsBackgroundColorColor2} {EndGameView3Page.formatingData.GlobalStatsBackgroundColorPercent2}%)"; + } + } + public static void GlobalStatsBorderColorSubmit() + { + EndGameView3Page.formatingData.GlobalStatsBorderColor = textValueOverlayView3.GlobalStatsBorderColor.ToString() + "px solid " + GlobalStatsBorderColorNotSet; + } + public static string TempsGlobalStatsBorderColor() + { + string[] tempsColor = EndGameView3Page.formatingData.GlobalStatsBorderColor.Split(" "); + return tempsColor[2]; + } + public static string GlobalStatsBorderColorNotSet = EndGameView3Page.formatingData.GlobalStatsBorderColor.Split(" ")[2]; + public static void SetGlobalStatsBorderColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + string[] tempsBorderColor = EndGameView3Page.formatingData.GlobalStatsBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + GlobalStatsBorderColorNotSet = colorValue; + } + } + + public static void GlobalStatsSeparationColorSubmit() + { + EndGameView3Page.formatingData.GlobalStatsSeparationColor = textValueOverlayView3.GlobalStatsSeparationColor.ToString() + "px solid " + GlobalStatsSeparationColorNotSet; + } + public static string TempsGlobalStatsSeparationColor() + { + string[] tempsColor = EndGameView3Page.formatingData.GlobalStatsSeparationColor.Split(" "); + return tempsColor[2]; + } + public static string GlobalStatsSeparationColorNotSet = EndGameView3Page.formatingData.GlobalStatsSeparationColor.Split(" ")[2]; + public static void SetGlobalStatsSeparationColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + string[] tempsSeparationColor = EndGameView3Page.formatingData.GlobalStatsSeparationColor.Split(" "); + colorValue = tempsSeparationColor[2]; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + GlobalStatsSeparationColorNotSet = colorValue; + } + } + public static void SetGlobalStatsTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView3Page.formatingData.GlobalStatsTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView3Page.formatingData.GlobalStatsTextColor = colorValue; + } + } + + public static void SetGlobalStatsBlueTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView3Page.formatingData.GlobalStatsBlueTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView3Page.formatingData.GlobalStatsBlueTextColor = colorValue; + } + } + + public static void SetGlobalStatsRedTextColor() + { + if (colorPickerOverlay1GlobalStats.Equals("hidden")) + { + colorPickerOverlay1GlobalStats = "visible"; + colorValue = EndGameView3Page.formatingData.GlobalStatsRedTextColor; + } + else + { + colorPickerOverlay1GlobalStats = "hidden"; + EndGameView3Page.formatingData.GlobalStatsRedTextColor = colorValue; + } + } + + + + + + + + public static void GoldDiffBackgroundColorSubmit() + { + EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg = textValueOverlayView3.GoldDiffBackgroundColorDeg.ToString(); + EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1 = textValueOverlayView3.GoldDiffBackgroundColorPercent1.ToString(); + EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2 = textValueOverlayView3.GoldDiffBackgroundColorPercent2.ToString(); + EndGameView3Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + + public static void SetGoldDiffBackgroundColorColor1() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1 = colorValue; + EndGameView3Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + } + public static void SetGoldDiffBackgroundColorColor2() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2 = colorValue; + EndGameView3Page.formatingData.GoldDiffBackgroundColor = $"linear-gradient({EndGameView3Page.formatingData.GoldDiffBackgroundColorDeg}deg, {EndGameView3Page.formatingData.GoldDiffBackgroundColorColor1} {EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent1}%, {EndGameView3Page.formatingData.GoldDiffBackgroundColorColor2} {EndGameView3Page.formatingData.GoldDiffBackgroundColorPercent2}%)"; + } + } + public static void GoldDiffBorderColorSubmit() + { + EndGameView3Page.formatingData.GoldDiffBorderColor = textValueOverlayView3.GoldDiffBorderColor.ToString() + "px solid " + GoldDiffBorderColorNotSet; + } + public static string TempsGoldDiffBorderColor() + { + string[] tempsColor = EndGameView3Page.formatingData.GoldDiffBorderColor.Split(" "); + return tempsColor[2]; + } + public static string GoldDiffBorderColorNotSet = EndGameView3Page.formatingData.GoldDiffBorderColor.Split(" ")[2]; + public static void SetGoldDiffBorderColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + string[] tempsBorderColor = EndGameView3Page.formatingData.GoldDiffBorderColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + GoldDiffBorderColorNotSet = colorValue; + } + } + public static void SetGoldDiffTextColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffTextColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffTextColor = colorValue; + } + } + public static void GoldDiffBarColorSubmit() + { + EndGameView3Page.formatingData.GoldDiffBarColor = textValueOverlayView3.GoldDiffBarColor.ToString() + "px dashed " + GoldDiffBarColorNotSet; + } + public static string TempsGoldDiffBarColor() + { + string[] tempsColor = EndGameView3Page.formatingData.GoldDiffBarColor.Split(" "); + return tempsColor[2]; + } + public static string GoldDiffBarColorNotSet = EndGameView3Page.formatingData.GoldDiffBarColor.Split(" ")[2]; + public static void SetGoldDiffBarColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + string[] tempsBorderColor = EndGameView3Page.formatingData.GoldDiffBarColor.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + GoldDiffBarColorNotSet = colorValue; + } + } + public static void SetGoldDiffBlueTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffBlueTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffBlueTextGoldColor = colorValue; + } + } + public static void SetGoldDiffRedTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffRedTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffRedTextGoldColor = colorValue; + } + } + public static void SetGoldDiffZeroTextGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffZeroTextGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffZeroTextGoldColor = colorValue; + } + } + public static void SetGoldDiffBluePointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffBluePointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffBluePointGoldColor = colorValue; + } + } + public static void SetGoldDiffRedPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffRedPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffRedPointGoldColor = colorValue; + } + } + public static void SetGoldDiffZeroPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffZeroPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffZeroPointGoldColor = colorValue; + } + } + public static void SetGoldDiffStartEndPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffStartEndPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffStartEndPointGoldColor = colorValue; + } + } + public static void SetGoldDiffLinkPointGoldColor() + { + if (colorPickerOverlay1GoldDiff.Equals("hidden")) + { + colorPickerOverlay1GoldDiff = "visible"; + colorValue = EndGameView3Page.formatingData.GoldDiffLinkPointGoldColor; + } + else + { + colorPickerOverlay1GoldDiff = "hidden"; + EndGameView3Page.formatingData.GoldDiffLinkPointGoldColor = colorValue; + } + } + } + + + + + + // + private struct OverlayViewEnableOrDisable + { + public string text { get; set; } + public string color { get; set; } + + public OverlayViewEnableOrDisable() + { + text = ""; + color = ""; + } + + public OverlayViewEnableOrDisable(string text, string color) + { + this.text = text; + this.color = color; + } + + } + + private OverlayViewEnableOrDisable displayContentView1Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView2Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView3Button = new("display", "#008000"); + + private string displayContentView1 = "none"; + private void HideOrDisplayContentView1() + { + if (displayContentView1.Equals("none")) + { + displayContentView1Button.text = "hide"; + displayContentView1Button.color = "#be1e37"; + displayContentView1 = "content"; + } + else + { + displayContentView1Button.text = "display"; + displayContentView1Button.color = "#008000"; + displayContentView1 = "none"; + } + } + + private string displayContentView2 = "none"; + private void HideOrDisplayContentView2() + { + if (displayContentView2.Equals("none")) + { + displayContentView2Button.text = "hide"; + displayContentView2Button.color = "#be1e37"; + displayContentView2 = "content"; + } + else + { + displayContentView2Button.text = "display"; + displayContentView2Button.color = "#008000"; + displayContentView2 = "none"; + } + } + private string displayContentView3 = "none"; + private void HideOrDisplayContentView3() + { + if (displayContentView3.Equals("none")) + { + displayContentView3Button.text = "hide"; + displayContentView3Button.color = "#be1e37"; + displayContentView3 = "content"; + } + else + { + displayContentView3Button.text = "display"; + displayContentView3Button.color = "#008000"; + displayContentView3 = "none"; + } + } + + public static void EnableAllGradiantView1() + { + textValueOverlayView1.TopBarGradiant = true; + textValueOverlayView1.ChampionInfoGradiant = true; + textValueOverlayView1.BansGradiant = true; + textValueOverlayView1.GlobalStatsGradiant = true; + textValueOverlayView1.GoldDiffGradiant = true; + } + public static void DisableAllGradiantView1() + { + textValueOverlayView1.TopBarGradiant = false; + textValueOverlayView1.ChampionInfoGradiant = false; + textValueOverlayView1.BansGradiant = false; + textValueOverlayView1.GlobalStatsGradiant = false; + textValueOverlayView1.GoldDiffGradiant = false; + } + + public static void EnableAllGradiantView2() + { + textValueOverlayView2.TopBarGradiant = true; + textValueOverlayView2.ChampionInfoGradiant = true; + textValueOverlayView2.BansGradiant = true; + textValueOverlayView2.GlobalStatsGradiant = true; + textValueOverlayView2.GoldDiffGradiant = true; + } + public static void DisableAllGradiantView2() + { + textValueOverlayView2.TopBarGradiant = false; + textValueOverlayView2.ChampionInfoGradiant = false; + textValueOverlayView2.BansGradiant = false; + textValueOverlayView2.GlobalStatsGradiant = false; + textValueOverlayView2.GoldDiffGradiant = false; + } + public static void EnableAllGradiantView3() + { + textValueOverlayView3.TopBarGradiant = true; + textValueOverlayView3.ChampionInfoGradiant = true; + textValueOverlayView3.BansGradiant = true; + textValueOverlayView3.GlobalStatsGradiant = true; + textValueOverlayView3.GoldDiffGradiant = true; + } + public static void DisableAllGradiantView3() + { + textValueOverlayView3.TopBarGradiant = false; + textValueOverlayView3.ChampionInfoGradiant = false; + textValueOverlayView3.BansGradiant = false; + textValueOverlayView3.GlobalStatsGradiant = false; + textValueOverlayView3.GoldDiffGradiant = false; + } + public static void EnableAllBackgroundView3() + { + textValueOverlayView3.TopBarBackground = true; + textValueOverlayView3.ChampionInfoBackground = true; + textValueOverlayView3.BansBackground = true; + textValueOverlayView3.GlobalStatsBackground = true; + textValueOverlayView3.GoldDiffBackground = true; + } + public static void DisableAllBackgroundView3() + { + textValueOverlayView3.TopBarBackground = false; + textValueOverlayView3.ChampionInfoBackground = false; + textValueOverlayView3.BansBackground = false; + textValueOverlayView3.GlobalStatsBackground = false; + textValueOverlayView3.GoldDiffBackground = false; + } + } +} diff --git a/OSL-Server/Pages/EndGame/EndGamePage.razor.css b/OSL-Server/Pages/EndGame/EndGamePage.razor.css new file mode 100644 index 0000000..4081da5 --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGamePage.razor.css @@ -0,0 +1,84 @@ +/*##########################################################*/ +/*######################## General #########################*/ +/*##########################################################*/ + +@font-face { + font-family: MyFont; + src: url(../css/font/fonts/fontLoL.ttf); +} + +html, body { + background-color: black; + color: white; +} + +.parent { + overflow: hidden +} + +.title { + font-family: MyFont; + font-weight: bold; + text-decoration: underline; +} + +.button-color { + height: 30px; + width: 30px; +} + +.champ-select-overlay-1 { + margin: auto; + position: relative; +} + +.general { + margin: auto; + position: relative; +} + + .general .color-picker { + position: absolute; + left: 600px; + top: 0px; + border: 5px solid black; + } + +.timer-bar { + margin: auto; + position: relative; +} + + .timer-bar .color-picker { + position: absolute; + left: 600px; + top: 0px; + border: 5px solid black; + } + +.champion-info { + margin: auto; + position: relative; +} + +.bans { + margin: auto; + position: relative; +} + +.global-stats { + margin: auto; + position: relative; +} + +.gold-diff { + margin: auto; + position: relative; +} + +.color-picker { + position: absolute; + left: 600px; + top: -100px; + border: 5px solid black; +} diff --git a/OSL-Server/Pages/EndGame/EndGameView1Page.razor b/OSL-Server/Pages/EndGame/EndGameView1Page.razor new file mode 100644 index 0000000..34c1134 --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView1Page.razor @@ -0,0 +1,433 @@ +@page "/endgame/view1" +@using OSL_Server.DataReciveClient.Processing.EndGame; +@layout EmptyLayout + +End Game View 1 + +@{ + string tempsBackgroundColor; + @if (EndGamePage.textValueOverlayView1.BackgroundColor) + { + tempsBackgroundColor = formatingData.BackgroundColor; + } + else + { + tempsBackgroundColor = ""; + } +} + +
+ +
+ @if (EndGameInfo.jsonContentEndOfMatch != null && EndGameInfo.jsonContentMatch != null && EndGameInfo.jsonContentTimeline != null) + { + string tempsTopBarGradiant; + string tempsChampionInfoGradiant; + string tempsBansGradiant; + string tempsGlobalStatsGradiant; + string tempsGoldDiffGradiant; + + @if (EndGamePage.textValueOverlayView1.TopBarGradiant) + { + tempsTopBarGradiant = formatingData.TopBarGradiant; + } + else + { + tempsTopBarGradiant = ""; + } + @if (EndGamePage.textValueOverlayView1.ChampionInfoGradiant) + { + tempsChampionInfoGradiant = formatingData.ChampionInfoGradiant; + } + else + { + tempsChampionInfoGradiant = ""; + } + @if (EndGamePage.textValueOverlayView1.BansGradiant) + { + tempsBansGradiant = formatingData.BansGradiant; + } + else + { + tempsBansGradiant = ""; + } + @if (EndGamePage.textValueOverlayView1.GlobalStatsGradiant) + { + tempsGlobalStatsGradiant = formatingData.GlobalStatsGradiant; + } + else + { + tempsGlobalStatsGradiant = ""; + } + @if (EndGamePage.textValueOverlayView1.GoldDiffGradiant) + { + tempsGoldDiffGradiant = formatingData.GoldDiffGradiant; + } + else + { + tempsGoldDiffGradiant = ""; + } + + +
+
+
+
+
+ @formatingData.TopBarBlueTeamName +
+
+ @GetWinLossBlue() +
+
+ @formatingData.TopBarBlueTeamScore +
+
+
+
+ @formatingData.TopBarTimerText +
+
+ @GetTimer() +
+
+
+
+ @formatingData.TopBarRedTeamName +
+
+ @GetWinLossRed() +
+
+ @formatingData.TopBarRedTeamScore +
+
+
+
+
+
+
+
+ @formatingData.ChampionInfoText +
+
+ + @foreach (var players in EndGameInfo.jsonContentEndOfMatch.teams[0].players) + { +
+
+ +
+
+
+ @ConvertToK(Convert.ToDouble(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS)) +
+
+
+
+
+ } +
+ +
+ @foreach (var players in EndGameInfo.jsonContentEndOfMatch.teams[1].players) + { +
+
+ +
+
+
+ @ConvertToK(Convert.ToDouble(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS)) +
+
+
+
+
+ } +
+
+
+
+
+
+
+
+ @foreach (var blueBans in EndGameInfo.jsonContentMatch.info.teams[0].bans) + { +
+ +
+ } +
+
+ BANS +
+
+ @foreach (var blueBans in EndGameInfo.jsonContentMatch.info.teams[1].bans) + { +
+ +
+ } +
+
+
+
+
+
+
+
+ @GetKDABlue() +
+
+ @GetGoldBlue() +
+
+ @GetTowerKillBlue() +
+
+
+ @foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + @foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null && !monsterSubType.Equals("ELDER_DRAGON")) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { +
+ +
+ } + } + } + } +
+
+
+ @GetElderKillBlue() +
+
+ @GetHeraldKillBlue() +
+
+ @GetBaronKillBlue() +
+
+
+
+ K/D/A +
+
+ Gold +
+
+ Towers +
+
+ Dragons +
+
+ Elder dragons +
+
+ Heralds +
+
+ Barons +
+
+
+
+ @GetKDARed() +
+
+ @GetGoldRed() +
+
+ @GetTowerKillRed() +
+
+
+ @foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + @foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null && !monsterSubType.Equals("ELDER_DRAGON")) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 200) + { +
+ +
+ } + } + } + } +
+
+
+ @GetElderKillRed() +
+
+ @GetHeraldKillRed() +
+
+ @GetBaronKillRed() +
+
+
+
+
+
+
+ @formatingData.GoldDiffText +
+
+
+
+
    + @{ + CreateTabGold(); + int x = 0; + } + @for (int i = 0; i < goldDiff.Count - 1; i++) + { + int y = (goldDiff[i] * 100) / MaxGold(); + + double nexty = (goldDiff[i + 1] * 100) / MaxGold(); + int nextx = x + 1250 / goldDiff.Count(); + if (i == 0) + { +
  • +
    +
    +
  • + } + else + { + if (goldDiff[i] > 0) + { +
  • +
    +
    +
  • + } + else if (goldDiff[i] == 0) + { +
  • +
    +
    +
  • + } + else + { +
  • +
    +
    +
  • + } + } + if (i == goldDiff.Count - 2) + { +
  • +
    +
  • + } + x += 1250 / goldDiff.Count(); + } +
+
+
+
+
+
+
+
+
+ + @{ + int decalageX = 1192 / (GetTimerInt() / 5); + int leftDistance = 47; + TimeSpan timerFive = new TimeSpan(0, 0, 0); + } + @for (int i = 0; i < (GetTimerInt() / 5) - 1; i++) + { + leftDistance = leftDistance + decalageX; + timerFive = timerFive.Add(new TimeSpan(0, 5, 0)); +
+
@timerFive.ToString("mm':'ss")
+ } + + @*
*@ + @*
*@ + @*
*@ +
+
+ 0 +
+
+ @GetTimer() +
+ @*
+ @GetTimerDiv(1.5) +
+
+ @GetTimerDiv(2) +
+
+ @GetTimerDiv(4) +
*@ +
+ 00:00 +
+
+ @ConvertToK(MaxGold()) +
+
+ @ConvertToK(MaxGold()/2) +
+
+ @ConvertToK(MaxGold()/2) +
+
+ @ConvertToK(MaxGold()) +
+
+
+ } + else + { +
+

Info! Not end game information found

+
+ } +
+ +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); + } diff --git a/OSL-Server/Pages/EndGame/EndGameView1Page.razor.cs b/OSL-Server/Pages/EndGame/EndGameView1Page.razor.cs new file mode 100644 index 0000000..8b7a8bf --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView1Page.razor.cs @@ -0,0 +1,588 @@ +using OSL_Server.Configuration; +using OSL_Server.DataReciveClient.Processing.EndGame; +using static OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo; + +namespace OSL_Server.Pages.EndGame +{ + public partial class EndGameView1Page + { + private static OSLLogger _logger = new OSLLogger("EndGameView1Page"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + //Tab of difference of team golds + public static List goldDiff = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + + public string BackgroundColor { get; set; } + public string BackgroundColorDeg { get; set; } + public string BackgroundColorColor1 { get; set; } + public string BackgroundColorPercent1 { get; set; } + public string BackgroundColorColor2 { get; set; } + public string BackgroundColorPercent2 { get; set; } + + public string TopBarBackgroundColor { get; set; } + public string TopBarBackgroundColorDeg { get; set; } + public string TopBarBackgroundColorColor1 { get; set; } + public string TopBarBackgroundColorPercent1 { get; set; } + public string TopBarBackgroundColorColor2 { get; set; } + public string TopBarBackgroundColorPercent2 { get; set; } + public string TopBarGradiant { get; set; } + public string TopBarBorderColor { get; set; } + public string TopBarTimerText { get; set; } + public string TopBarTimerTextColor { get; set; } + public string TopBarTimerColor { get; set; } + public string TopBarBlueTeamName { get; set; } + public string TopBarBlueTeamScore { get; set; } + public string TopBarBlueTeamNameColor { get; set; } + public string TopBarBlueTeamScoreColor { get; set; } + public string TopBarBlueTeamWinLossColor { get; set; } + public string TopBarRedTeamName { get; set; } + public string TopBarRedTeamScore { get; set; } + public string TopBarRedTeamNameColor { get; set; } + public string TopBarRedTeamScoreColor { get; set; } + public string TopBarRedTeamWinLossColor { get; set; } + + public string ChampionInfoBackgroundColor { get; set; } + public string ChampionInfoBackgroundColorDeg { get; set; } + public string ChampionInfoBackgroundColorColor1 { get; set; } + public string ChampionInfoBackgroundColorPercent1 { get; set; } + public string ChampionInfoBackgroundColorColor2 { get; set; } + public string ChampionInfoBackgroundColorPercent2 { get; set; } + public string ChampionInfoGradiant { get; set; } + public string ChampionInfoBorderColor { get; set; } + public string ChampionInfoText { get; set; } + public string ChampionInfoTextColor { get; set; } + public string ChampionInfoBlueBarColor { get; set; } + public string ChampionInfoRedBarColor { get; set; } + public string ChampionInfoBlueDegaTextColor { get; set; } + public string ChampionInfoRedDegaTextColor { get; set; } + + public string BansBackgroundColor { get; set; } + public string BansBackgroundColorDeg { get; set; } + public string BansBackgroundColorColor1 { get; set; } + public string BansBackgroundColorPercent1 { get; set; } + public string BansBackgroundColorColor2 { get; set; } + public string BansBackgroundColorPercent2 { get; set; } + public string BansGradiant { get; set; } + public string BansBorderColor { get; set; } + public string BansTextColor { get; set; } + + public string GlobalStatsBackgroundColor { get; set; } + public string GlobalStatsBackgroundColorDeg { get; set; } + public string GlobalStatsBackgroundColorColor1 { get; set; } + public string GlobalStatsBackgroundColorPercent1 { get; set; } + public string GlobalStatsBackgroundColorColor2 { get; set; } + public string GlobalStatsBackgroundColorPercent2 { get; set; } + public string GlobalStatsGradiant { get; set; } + public string GlobalStatsBorderColor { get; set; } + public string GlobalStatsTextColor { get; set; } + public string GlobalStatsBlueTextColor { get; set; } + public string GlobalStatsRedTextColor { get; set; } + + public string GoldDiffBackgroundColor { get; set; } + public string GoldDiffBackgroundColorDeg { get; set; } + public string GoldDiffBackgroundColorColor1 { get; set; } + public string GoldDiffBackgroundColorPercent1 { get; set; } + public string GoldDiffBackgroundColorColor2 { get; set; } + public string GoldDiffBackgroundColorPercent2 { get; set; } + public string GoldDiffGradiant { get; set; } + public string GoldDiffBorderColor { get; set; } + public string GoldDiffText { get; set; } + public string GoldDiffTextColor { get; set; } + public string GoldDiffBlueTextGoldColor { get; set; } + public string GoldDiffRedTextGoldColor { get; set; } + public string GoldDiffZeroTextGoldColor { get; set; } + public string GoldDiffBluePointGoldColor { get; set; } + public string GoldDiffRedPointGoldColor { get; set; } + public string GoldDiffZeroPointGoldColor { get; set; } + public string GoldDiffStartEndPointGoldColor { get; set; } + public string GoldDiffLinkPointGoldColor { get; set; } + public string GoldDiffBarColor { get; set; } + + } + + public string GetTimer() + { + try + { + int gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + return time.ToString("mm':'ss"); + } + catch + { + return "00:00"; + } + } + + public int GetTimerInt() + { + try + { + int gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + int timeLength = int.Parse(time.ToString("mm")); + return timeLength; + } + catch + { + return 0; + } + } + + public string GetTimerDiv(double div) + { + try + { + double gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + gameLength = gameLength / div; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + return time.ToString("mm':'ss"); + } + catch + { + return "00:00"; + } + } + + public string GetChampionPathByPath(string championId) + { + string[] parsePath = championId.Split("/"); + string[] parseId = parsePath[parsePath.Length - 1].Split("."); + return GetChampionPath(parseId[0]); + } + + public string GetChampionPath(string championId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{championId}/default-square.png"; + } + + public string ConvertToK(double total) + { + if (total > 1000000) + { + return $"{Math.Round(total / 1000000, 1)} M"; + } + else if (total > 1000) + { + return $"{Math.Round(total / 1000, 1)}k"; + } + else + { + return $"{total}"; + } + } + + public string ConvertToWidth(int total) + { + int max = 0; + foreach (var teams in EndGameInfo.jsonContentEndOfMatch.teams) + { + foreach (var players in teams.players) + { + if (Convert.ToInt32(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS) > max) + { + max = Convert.ToInt32(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS); + } + } + } + double calculPourcent2 = (total * 220) / max; + return $"{calculPourcent2}px"; + } + + public string GetKDABlue() + { + string kill = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.CHAMPIONS_KILLED; + string death = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.NUM_DEATHS; + string assist = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.ASSISTS; + return $"{kill}/{death}/{assist}"; + } + public string GetKDARed() + { + string kill = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.CHAMPIONS_KILLED; + string death = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.NUM_DEATHS; + string assist = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.ASSISTS; + return $"{kill}/{death}/{assist}"; + } + + public string GetGoldBlue() + { + float gold = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.GOLD_EARNED; + if (gold > 1000000) + { + return $"{Math.Round(gold / 1000000, 1)} M"; + } + else if (gold > 1000) + { + return $"{Math.Round(gold / 1000, 1)} k"; + } + else + { + return $"{gold}"; + } + } + public string GetGoldRed() + { + float gold = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.GOLD_EARNED; + if (gold > 1000000) + { + return $"{Math.Round(gold / 1000000, 1)} M"; + } + else if (gold > 1000) + { + return $"{Math.Round(gold / 1000, 1)} k"; + } + else + { + return $"{gold}"; + } + } + + public string GetTowerKillBlue() + { + int tower = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.TURRETS_KILLED; + return $"{tower}"; + } + + public string GetTowerKillRed() + { + int tower = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.TURRETS_KILLED; + return $"{tower}"; + } + + public string GetDragonsKill(string monsterSubType) + { + if (monsterSubType != null && monsterSubType.Equals("HEXTECH_DRAGON")) + { + return $"./assets/endgame/dragon/hextech_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("WATER_DRAGON")) + { + return $"./assets/endgame/dragon/ocean_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("FIRE_DRAGON")) + { + return $"./assets/endgame/dragon/infernal_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("AIR_DRAGON")) + { + return $"./assets/endgame/dragon/cloud_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("CHEMTECH_DRAGON")) + { + return $"./assets/endgame/dragon/chemtech_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("EARTH_DRAGON")) + { + return $"./assets/endgame/dragon/mountain_dragon_icon.png"; + } + //int tower = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.TURRETS_KILLED; + return $""; + } + + public string GetElderKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterSubType.Equals("ELDER_DRAGON")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetElderKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 200) + { + if (monsterSubType.Equals("ELDER_DRAGON")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetHeraldKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("RIFTHERALD")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetHeraldKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("RIFTHERALD")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetBaronKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetBaronKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetWinLossBlue() + { + foreach (var participants in jsonContentMatch.info.participants) + { + int teamId = participants.teamId; + if (teamId == 100) + { + bool win = participants.win; + if (win) + { + return $"VICTOIRE"; + } + } + } + return $"DÉFAITE"; + } + + public string GetWinLossRed() + { + foreach (var participants in jsonContentMatch.info.participants) + { + int teamId = participants.teamId; + if (teamId == 200) + { + bool win = participants.win; + if (win) + { + return $"VICTOIRE"; + } + } + } + return $"DÉFAITE"; + } + + public static void ResetColor() + { + Config.LoadFormatingDataConfigEndGameView1(); + EndGamePage.textValueOverlayView1.TopBarBlueTeamName = ""; + EndGamePage.textValueOverlayView1.TopBarRedTeamName = ""; + EndGamePage.textValueOverlayView1.TopBarBlueTeamScore = ""; + EndGamePage.textValueOverlayView1.TopBarRedTeamScore = ""; + EndGamePage.textValueOverlayView1.TopBarTimerText = ""; + EndGamePage.textValueOverlayView1.ChampionInfoText = ""; + EndGamePage.textValueOverlayView1.GoldDiffText = ""; + EndGamePage.textValueOverlayView1.BackgroundColor = true; + EndGamePage.textValueOverlayView1.TopBarGradiant = true; + EndGamePage.textValueOverlayView1.ChampionInfoGradiant = true; + EndGamePage.textValueOverlayView1.BansGradiant = true; + EndGamePage.textValueOverlayView1.GlobalStatsGradiant = true; + EndGamePage.textValueOverlayView1.GoldDiffGradiant = true; + EndGamePage.textValueOverlayView1.BackgroundColorDeg = 90; + EndGamePage.textValueOverlayView1.BackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView1.BackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView1.TopBarBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView1.TopBarBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView1.TopBarBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView1.ChampionInfoBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView1.ChampionInfoBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView1.ChampionInfoBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView1.BansBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView1.BansBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView1.BansBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView1.GlobalStatsBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView1.GlobalStatsBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView1.GlobalStatsBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView1.GoldDiffBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView1.GoldDiffBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView1.GoldDiffBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView1.TopBarBorderColor = 5; + EndGamePage.textValueOverlayView1.ChampionInfoBorderColor = 5; + EndGamePage.textValueOverlayView1.BansBorderColor = 5; + EndGamePage.textValueOverlayView1.GlobalStatsBorderColor = 5; + EndGamePage.textValueOverlayView1.GoldDiffBorderColor = 5; + + } + + + + public static void CreateTabGold() + { + goldDiff = new(); + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + int totalGoldBlue = 0; + int totalGoldRed = 0; + int i = 0; + foreach (var participantFrames in frames.participantFrames) + { + i++; + if (i < 6) + { + foreach (var intVar in participantFrames) + { + totalGoldBlue += Convert.ToInt32(intVar.totalGold); + } + } + else + { + foreach (var intVar in participantFrames) + { + totalGoldRed += Convert.ToInt32(intVar.totalGold); + } + } + } + int diffGold = totalGoldBlue - totalGoldRed; + goldDiff.Add(diffGold); + } + } + public static int MaxGold() + { + int max = goldDiff.Max(); + int min = goldDiff.Min(); + if (max > Math.Abs(min)) + { + return max; + } + else + { + return Math.Abs(min); + } + } + + + public static string ConvertToString(int x) + { + return $"{x}px"; + } + + public static string ConvertToString(double x) + { + return $"{x}px"; + } + + public static string ConvertToHyp(int x, double y, int prex, double prey) + { + double newY = y - prey; + double newX = x - prex; + double sqrt = Math.Sqrt(newX * newX + newY * newY); + string machin = sqrt.ToString(); + return machin.Replace(",", "."); + } + + public static string ConvertToAngle(int x, double y, int prex, double prey) + { + double newY = y - prey; + double newX = x - prex; + double sqrt = Math.Sqrt(newX * newX + newY * newY); + double sin = newY / sqrt; + double test = Math.Asin(sin) * (180 / Math.PI); + string machin = test.ToString(); + return machin.Replace(",", "."); + } + + + } +} diff --git a/OSL-Server/Pages/EndGame/EndGameView1Page.razor.css b/OSL-Server/Pages/EndGame/EndGameView1Page.razor.css new file mode 100644 index 0000000..a26615d --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView1Page.razor.css @@ -0,0 +1,655 @@ +/*##########################################################*/ +/*######################## General #########################*/ +/*##########################################################*/ + +@font-face { + font-family: MyFont; + src: url(../css/font/BeaufortForLoL-OTF/BeaufortforLOL-Bold.otf); +} + +html, body { + background-color: black; + color: white; +} + +.title { + font-family: MyFont; + font-weight: bold; + text-decoration: underline; +} + +.endGameView1 { + width: 1920px; + height: 1080px; + position: absolute; + /*background: url(./assets/endgame/image.png);*/ + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ +} + +.content { + position: absolute; +} + + +/*##########################################################*/ +/*######################## top-bar #########################*/ +/*##########################################################*/ + +.top-bar { + top: 75px; + left: 310px; + position: absolute; + height: 100px; + width: 1300px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.top-bar-gradiant { + height: 100px; + width: 1300px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.top-bar-border { + height: 100px; + width: 1300px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.top-bar-blue-team { + left: 50px; + padding: 50px; + font-family: MyFont; + font-size: 32px; + position: absolute; + display: flex; +} + +.top-bar-blue-team-name { + padding-right: 20px; +} + +.top-bar-blue-team-winloss { + padding-right: 40px; +} + +.top-bar-blue-team-score { + /*padding-right: 30px;*/ +} + + + + +.top-bar-timer { + padding: 50px; + font-family: MyFont; + font-size: 28px; + text-align: center; + color: #c99d53; + position: absolute; +} + +.top-bar-red-team { + right: 50px; + padding: 50px; + font-family: MyFont; + font-size: 32px; + position: absolute; + display: flex; + flex-direction: row-reverse; +} + +.top-bar-red-team-name { + padding-left: 20px; +} + +.top-bar-red-team-winloss { + padding-left: 40px; +} + +.top-bar-red-team-score { + /*padding: 10px;*/ +} + + +/*##########################################################*/ +/*##################### champion-info ######################*/ +/*##########################################################*/ + +.champion-info { + top: 200px; + left: 310px; + position: absolute; + height: 390px; + width: 600px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.champion-info-gradiant { + height: 400px; + width: 600px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.champion-info-border { + height: 400px; + width: 600px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + + +.champion-info-stats { + text-align: center; + display: flex; + justify-content: center; +} + +.champion-info-stats-text { + /*left: 0px;*/ + top: 0px; + padding: 20px; + font-family: MyFont; + font-size: 32px; + position: absolute; + width: 600px; + /*color: #c99d53;*/ +} + +.champion-info-stats-blue { + top: 90px; + left: 5px; + position: absolute; +} + +.champion-info-stats-blue-group { + display: flex; +} + +.champion-info-stats-blue-group-info { + left: 60px; + position: absolute; +} + +.champion-info-stats-blue-group-text { + font-family: MyFont; + font-size: 22px; + left: 10px; + position: absolute; +} + +.champion-info-stats-blue-group-bar { + height: 15px; + width: 200px; + top: 35px; + left: 0.2px; + /*background-color: #0b849e;*/ + position: absolute; +} + +.champion-info-stats-red-group { + display: flex; +} + +.champion-info-stats-red-group-info { + right: 60px; + position: absolute; +} + +.champion-info-stats-red-group-text { + font-family: MyFont; + font-size: 22px; + right: 10px; + position: absolute; +} + +.champion-info-stats-red-group-bar { + height: 15px; + width: 200px; + top: 35px; + right: 0.2px; + /*background-color: #be1e37;*/ + position: absolute; +} + +.champion-info-stats-red { + top: 90px; + right: 5px; + position: absolute; +} + +.pick-picture { + height: 60px; +} + +/*##########################################################*/ +/*########################## Bans ##########################*/ +/*##########################################################*/ + +.bans { + top: 615px; + /*top: 645px;*/ + left: 310px; + height: 60px; + width: 600px; + position: absolute; + display: flex; + justify-content: center; + box-sizing: border-box; + align-items: center; + margin-left: 0; + margin-right: 0; + /*color: #c99d53;*/ + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ +} + +.bans-gradiant { + height: 60px; + width: 600px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.bans-border { + height: 60px; + width: 600px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.bans-info { + position: absolute; + display: flex; +} + +.bans-info-blue { + display: flex; + box-sizing: border-box; +} + +.bans-info-red { + display: flex; + box-sizing: border-box; +} + +.bans-picture { + height: 49.5px; +} + +.bans-info-text { + padding-left: 7.4px; + padding-right: 7.4px; + font-family: MyFont; + font-size: 30px; +} + + +/*##########################################################*/ +/*###################### global-stats ######################*/ +/*##########################################################*/ + +.global-stats { + top: 200px; + left: 1010px; + position: absolute; + height: 475px; + width: 600px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.global-stats-gradiant { + height: 475px; + width: 600px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.global-stats-border { + height: 475px; + width: 600px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.global-stats-center { + position: absolute; + text-align: center; + height: 475px; +} + +.global-stats-center-info { + font-family: MyFont; + font-size: 30px; + padding: 10px; + /*color: #c99d53;*/ +} + +.global-stats-blue { + font-family: MyFont; + font-size: 30px; + height: 475px; + width: 250px; + left: 0px; + position: absolute; + text-align: center; + justify-content: center; + align-items: center; +} + +.dragon-wrapper { + display: inline; + padding: 10px; +} + +.dragon-picture { + height: 30px; +} + +.global-stats-blue-info { + padding: 10px; +} + +.global-stats-red { + font-family: MyFont; + font-size: 30px; + height: 475px; + width: 250px; + right: 0px; + position: absolute; + text-align: center; + justify-content: center; + align-items: center; +} + +.global-stats-red-info { + padding: 10px; +} + + +/*##########################################################*/ +/*####################### gold-diff ########################*/ +/*##########################################################*/ + +.gold-diff { + top: 705px; + left: 310px; + position: absolute; + height: 300px; + width: 1300px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.gold-diff-gradiant { + height: 300px; + width: 1300px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.gold-diff-border { + height: 300px; + width: 1300px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.gold-diff-text { + /*left: 0px;*/ + top: 0px; + padding: 20px; + font-family: MyFont; + font-size: 32px; + position: absolute; + /*width: 1300px;*/ + color: #c99d53; +} + +.gold-graph { + position: absolute; + top: 165px; + left: 35px; +} + +.gold-graph-content { + position: absolute; + left: 48px; + top: 2px; +} + +.css-chart { + /*border-bottom: 1px solid;*/ + /*border-left: 1px solid;*/ + /*display: inline-block;*/ + /*height: var(--widget-size);*/ + /*margin: 5em 15em 1em 5em;*/ + /*padding: 0;*/ + position: absolute; + /*left: 20px;*/ + /*width: var(--widget-size);*/ +} + +.line-chart { + list-style: none; + margin: 0; + padding: 0; + position: absolute; +} + +.data-point { + background-color: white; + /*border: 2px solid lightblue;*/ + border-radius: 50%; + bottom: calc(var(--y) - 7px); + height: 15px; + left: calc(var(--x) - 7px); + position: absolute; + width: 15px; + z-index: 1; +} + +.line-segment { + /*background-color: #c99d53;*/ + bottom: var(--y); + height: 2px; + left: var(--x); + position: absolute; + transform: rotate(calc(var(--angle) * 1deg)); + transform-origin: left bottom; + width: calc(var(--hypotenuse) * 1px); +} + +.gold-graph-orizon-bar { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 0px; + left: 50px; + position: absolute; + width: 1185px; +} + +.gold-graph-vertical-bar { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 47px; + height: 200px; +} + +.gold-graph-vertical-bar-timer { + position: absolute; + top: 105px; + font-family: MyFont; + font-size: 18px; +} + +.gold-graph-vertical-bar-left { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 47px; + height: 200px; +} + +.gold-graph-vertical-bar-right { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 1239px; + height: 200px; +} + +.gold-graph-vertical-bar-mid { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 645px; + height: 200px; +} + +.gold-graph-vertical-bar-mid-left { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 345px; + height: 200px; +} + +.gold-graph-vertical-bar-mid-right { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 945px; + height: 200px; +} + +.gold-graph-orizon-bar-maxmoy { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: -50px; + left: 50px; + position: absolute; + width: 1185px; +} + +.gold-graph-orizon-bar-max { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: -100px; + left: 50px; + position: absolute; + width: 1185px; +} + +.gold-graph-orizon-bar-min { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 100px; + left: 50px; + position: absolute; + width: 1185px; +} + +.gold-graph-orizon-bar-minmoy { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 50px; + left: 50px; + position: absolute; + width: 1185px; +} + +.gold-graph-zero { + font-family: MyFont; + font-size: 22px; + position: absolute; + left: 15px; + top: -15px; +} + +.gold-graph-max { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: -120px; +} + +.gold-graph-maxmoy { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: -60px; +} + +.gold-graph-min { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: 80px; +} + +.gold-graph-minmoy { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: 40px; +} + +.gold-graph-time-1 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 25px; + top: 105px; +} +.gold-graph-time-2 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 325px; + top: 105px; +} +.gold-graph-time-3 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 625px; + top: 105px; +} +.gold-graph-time-4 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 925px; + top: 105px; +} +.gold-graph-time-5 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 1215px; + top: 105px; +} diff --git a/OSL-Server/Pages/EndGame/EndGameView2Page.razor b/OSL-Server/Pages/EndGame/EndGameView2Page.razor new file mode 100644 index 0000000..eb998db --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView2Page.razor @@ -0,0 +1,420 @@ +@page "/endgame/view2" +@using OSL_Server.DataReciveClient.Processing.EndGame; +@layout EmptyLayout + +End Game View 2 + +@{ + string tempsBackgroundColor; + @if (EndGamePage.textValueOverlayView2.BackgroundColor) + { + tempsBackgroundColor = formatingData.BackgroundColor; + //tempsBackgroundColor = ""; + } + else + { + tempsBackgroundColor = ""; + } +} + +
+ +
+ @if (EndGameInfo.jsonContentEndOfMatch != null && EndGameInfo.jsonContentMatch != null && EndGameInfo.jsonContentTimeline != null) + { + string tempsTopBarGradiant; + string tempsChampionInfoGradiant; + string tempsBansGradiant; + string tempsGlobalStatsGradiant; + string tempsGoldDiffGradiant; + + @if (EndGamePage.textValueOverlayView2.TopBarGradiant) + { + tempsTopBarGradiant = formatingData.TopBarGradiant; + } + else + { + tempsTopBarGradiant = ""; + } + @if (EndGamePage.textValueOverlayView2.ChampionInfoGradiant) + { + tempsChampionInfoGradiant = formatingData.ChampionInfoGradiant; + } + else + { + tempsChampionInfoGradiant = ""; + } + @if (EndGamePage.textValueOverlayView2.BansGradiant) + { + tempsBansGradiant = formatingData.BansGradiant; + } + else + { + tempsBansGradiant = ""; + } + @if (EndGamePage.textValueOverlayView2.GlobalStatsGradiant) + { + tempsGlobalStatsGradiant = formatingData.GlobalStatsGradiant; + } + else + { + tempsGlobalStatsGradiant = ""; + } + @if (EndGamePage.textValueOverlayView2.GoldDiffGradiant) + { + tempsGoldDiffGradiant = formatingData.GoldDiffGradiant; + } + else + { + tempsGoldDiffGradiant = ""; + } + + +
+
+
+
+
+ @formatingData.TopBarBlueTeamName +
+
+ @GetWinLossBlue() +
+
+ @formatingData.TopBarBlueTeamScore +
+
+
+
+ @formatingData.TopBarTimerText +
+
+ @GetTimer() +
+
+
+
+ @formatingData.TopBarRedTeamName +
+
+ @GetWinLossRed() +
+
+ @formatingData.TopBarRedTeamScore +
+
+
+
+
+
+
+
+ @formatingData.ChampionInfoText +
+
+ + @foreach (var players in EndGameInfo.jsonContentEndOfMatch.teams[0].players) + { +
+
+ +
+
+
+ @ConvertToK(Convert.ToDouble(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS)) +
+
+
+
+
+ } +
+ +
+ @foreach (var players in EndGameInfo.jsonContentEndOfMatch.teams[1].players) + { +
+
+ +
+
+
+ @ConvertToK(Convert.ToDouble(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS)) +
+
+
+
+
+ } +
+
+
+
+
+
+
+
+ @foreach (var blueBans in EndGameInfo.jsonContentMatch.info.teams[0].bans) + { +
+ +
+ } +
+
+ BANS +
+
+ @foreach (var blueBans in EndGameInfo.jsonContentMatch.info.teams[1].bans) + { +
+ +
+ } +
+
+
+
+
+
+
+
+ @GetKDABlue() +
+
+ @GetGoldBlue() +
+
+ @GetTowerKillBlue() +
+
+
+ @foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + @foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null && !monsterSubType.Equals("ELDER_DRAGON")) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { +
+ +
+ } + } + } + } +
+
+
+ @GetElderKillBlue() +
+
+ @GetHeraldKillBlue() +
+
+ @GetBaronKillBlue() +
+
+
+
+ K/D/A +
+
+ Gold +
+
+ Towers +
+
+ Dragons +
+
+ Elder dragons +
+
+ Heralds +
+
+ Barons +
+
+
+
+ @GetKDARed() +
+
+ @GetGoldRed() +
+
+ @GetTowerKillRed() +
+
+
+ @foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + @foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null && !monsterSubType.Equals("ELDER_DRAGON")) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 200) + { +
+ +
+ } + } + } + } +
+
+
+ @GetElderKillRed() +
+
+ @GetHeraldKillRed() +
+
+ @GetBaronKillRed() +
+
+
+
+
+
+
+ @formatingData.GoldDiffText +
+
+
+
+
    + @{ + CreateTabGold(); + int x = 0; + } + @for (int i = 0; i < goldDiff.Count - 1; i++) + { + int y = (goldDiff[i] * 100) / MaxGold(); + double nexty = (goldDiff[i + 1] * 100) / MaxGold(); + int nextx = x + 1780 / goldDiff.Count(); + if (i == 0) + { +
  • +
    +
    +
  • + } + else + { + if (goldDiff[i] > 0) + { +
  • +
    +
    +
  • + } + else if (goldDiff[i] == 0) + { +
  • +
    +
    +
  • + } + else + { +
  • +
    +
    +
  • + } + } + if (i == goldDiff.Count - 2) + { +
  • +
    +
  • + } + x += 1780 / goldDiff.Count(); + } +
+
+
+
+
+
+
+
+
+ + @{ + int decalageX = 1703 / (GetTimerInt() / 5); + int leftDistance = 47; + TimeSpan timerFive = new TimeSpan(0, 0, 0); + } + @for (int i = 0; i < (GetTimerInt() / 5) - 1; i++) + { + leftDistance = leftDistance + decalageX; + timerFive = timerFive.Add(new TimeSpan(0, 5, 0)); +
+
@timerFive.ToString("mm':'ss")
+ } +
+
+ 0 +
+
+ @GetTimer() +
+
+ 00:00 +
+
+ @ConvertToK(MaxGold()) +
+
+ @ConvertToK(MaxGold()/2) +
+
+ @ConvertToK(MaxGold()/2) +
+
+ @ConvertToK(MaxGold()) +
+
+
+ } + else + { +
+

Info! Not end game information found

+
+ } +
+ +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/EndGame/EndGameView2Page.razor.cs b/OSL-Server/Pages/EndGame/EndGameView2Page.razor.cs new file mode 100644 index 0000000..1024ccb --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView2Page.razor.cs @@ -0,0 +1,568 @@ +using OSL_Server.Configuration; +using OSL_Server.DataReciveClient.Processing.EndGame; +using static OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo; +using static OSL_Server.Pages.EndGameTestPage; + +namespace OSL_Server.Pages.EndGame +{ + public partial class EndGameView2Page + { + private static OSLLogger _logger = new OSLLogger("EndGameView2Page"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public static List goldDiff = new(); + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + + public string BackgroundColor { get; set; } + public string BackgroundColorDeg { get; set; } + public string BackgroundColorColor1 { get; set; } + public string BackgroundColorPercent1 { get; set; } + public string BackgroundColorColor2 { get; set; } + public string BackgroundColorPercent2 { get; set; } + + public string TopBarBackgroundColor { get; set; } + public string TopBarBackgroundColorDeg { get; set; } + public string TopBarBackgroundColorColor1 { get; set; } + public string TopBarBackgroundColorPercent1 { get; set; } + public string TopBarBackgroundColorColor2 { get; set; } + public string TopBarBackgroundColorPercent2 { get; set; } + public string TopBarGradiant { get; set; } + public string TopBarBorderColor { get; set; } + public string TopBarTimerText { get; set; } + public string TopBarTimerTextColor { get; set; } + public string TopBarTimerColor { get; set; } + public string TopBarBlueTeamName { get; set; } + public string TopBarBlueTeamScore { get; set; } + public string TopBarBlueTeamNameColor { get; set; } + public string TopBarBlueTeamScoreColor { get; set; } + public string TopBarBlueTeamWinLossColor { get; set; } + public string TopBarRedTeamName { get; set; } + public string TopBarRedTeamScore { get; set; } + public string TopBarRedTeamNameColor { get; set; } + public string TopBarRedTeamScoreColor { get; set; } + public string TopBarRedTeamWinLossColor { get; set; } + + public string ChampionInfoBackgroundColor { get; set; } + public string ChampionInfoBackgroundColorDeg { get; set; } + public string ChampionInfoBackgroundColorColor1 { get; set; } + public string ChampionInfoBackgroundColorPercent1 { get; set; } + public string ChampionInfoBackgroundColorColor2 { get; set; } + public string ChampionInfoBackgroundColorPercent2 { get; set; } + public string ChampionInfoGradiant { get; set; } + public string ChampionInfoBorderColor { get; set; } + public string ChampionInfoText { get; set; } + public string ChampionInfoTextColor { get; set; } + public string ChampionInfoBlueBarColor { get; set; } + public string ChampionInfoRedBarColor { get; set; } + public string ChampionInfoBlueDegaTextColor { get; set; } + public string ChampionInfoRedDegaTextColor { get; set; } + + public string BansBackgroundColor { get; set; } + public string BansBackgroundColorDeg { get; set; } + public string BansBackgroundColorColor1 { get; set; } + public string BansBackgroundColorPercent1 { get; set; } + public string BansBackgroundColorColor2 { get; set; } + public string BansBackgroundColorPercent2 { get; set; } + public string BansGradiant { get; set; } + public string BansBorderColor { get; set; } + public string BansTextColor { get; set; } + + public string GlobalStatsBackgroundColor { get; set; } + public string GlobalStatsBackgroundColorDeg { get; set; } + public string GlobalStatsBackgroundColorColor1 { get; set; } + public string GlobalStatsBackgroundColorPercent1 { get; set; } + public string GlobalStatsBackgroundColorColor2 { get; set; } + public string GlobalStatsBackgroundColorPercent2 { get; set; } + public string GlobalStatsGradiant { get; set; } + public string GlobalStatsBorderColor { get; set; } + public string GlobalStatsTextColor { get; set; } + public string GlobalStatsBlueTextColor { get; set; } + public string GlobalStatsRedTextColor { get; set; } + + public string GoldDiffBackgroundColor { get; set; } + public string GoldDiffBackgroundColorDeg { get; set; } + public string GoldDiffBackgroundColorColor1 { get; set; } + public string GoldDiffBackgroundColorPercent1 { get; set; } + public string GoldDiffBackgroundColorColor2 { get; set; } + public string GoldDiffBackgroundColorPercent2 { get; set; } + public string GoldDiffGradiant { get; set; } + public string GoldDiffBorderColor { get; set; } + public string GoldDiffText { get; set; } + public string GoldDiffTextColor { get; set; } + public string GoldDiffBlueTextGoldColor { get; set; } + public string GoldDiffRedTextGoldColor { get; set; } + public string GoldDiffZeroTextGoldColor { get; set; } + public string GoldDiffBluePointGoldColor { get; set; } + public string GoldDiffRedPointGoldColor { get; set; } + public string GoldDiffZeroPointGoldColor { get; set; } + public string GoldDiffStartEndPointGoldColor { get; set; } + public string GoldDiffLinkPointGoldColor { get; set; } + public string GoldDiffBarColor { get; set; } + + } + + public string GetTimer() + { + try + { + int gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + return time.ToString("mm':'ss"); + } + catch + { + return "00:00"; + } + } + + public int GetTimerInt() + { + try + { + int gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + int timeLength = int.Parse(time.ToString("mm")); + return timeLength; + } + catch + { + return 0; + } + } + + public string GetChampionPathByPath(string championId) + { + string[] parsePath = championId.Split("/"); + string[] parseId = parsePath[parsePath.Length - 1].Split("."); + return GetChampionPath(parseId[0]); + } + + public string GetChampionPath(string championId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{championId}/default-square.png"; + } + + public string ConvertToK(double total) + { + if (total > 1000000) + { + return $"{Math.Round(total / 1000000, 1)} M"; + } + else if (total > 1000) + { + return $"{Math.Round(total / 1000, 1)}k"; + } + else + { + return $"{total}"; + } + } + + public string ConvertToWidth(int total) + { + int max = 0; + foreach (var teams in EndGameInfo.jsonContentEndOfMatch.teams) + { + foreach (var players in teams.players) + { + if (Convert.ToInt32(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS) > max) + { + max = Convert.ToInt32(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS); + } + } + } + double calculPourcent2 = (total * 320) / max; + return $"{calculPourcent2}px"; + } + + public string GetKDABlue() + { + string kill = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.CHAMPIONS_KILLED; + string death = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.NUM_DEATHS; + string assist = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.ASSISTS; + return $"{kill}/{death}/{assist}"; + } + public string GetKDARed() + { + string kill = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.CHAMPIONS_KILLED; + string death = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.NUM_DEATHS; + string assist = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.ASSISTS; + return $"{kill}/{death}/{assist}"; + } + + public string GetGoldBlue() + { + float gold = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.GOLD_EARNED; + if (gold > 1000000) + { + return $"{Math.Round(gold / 1000000, 1)} M"; + } + else if (gold > 1000) + { + return $"{Math.Round(gold / 1000, 1)} k"; + } + else + { + return $"{gold}"; + } + } + public string GetGoldRed() + { + float gold = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.GOLD_EARNED; + if (gold > 1000000) + { + return $"{Math.Round(gold / 1000000, 1)} M"; + } + else if (gold > 1000) + { + return $"{Math.Round(gold / 1000, 1)} k"; + } + else + { + return $"{gold}"; + } + } + + public string GetTowerKillBlue() + { + int tower = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.TURRETS_KILLED; + return $"{tower}"; + } + + public string GetTowerKillRed() + { + int tower = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.TURRETS_KILLED; + return $"{tower}"; + } + + public string GetDragonsKill(string monsterSubType) + { + if (monsterSubType != null && monsterSubType.Equals("HEXTECH_DRAGON")) + { + return $"./assets/endgame/dragon/hextech_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("WATER_DRAGON")) + { + return $"./assets/endgame/dragon/ocean_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("FIRE_DRAGON")) + { + return $"./assets/endgame/dragon/infernal_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("AIR_DRAGON")) + { + return $"./assets/endgame/dragon/cloud_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("CHEMTECH_DRAGON")) + { + return $"./assets/endgame/dragon/chemtech_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("MONTAIN_DRAGON")) + { + return $"./assets/endgame/dragon/mountain_dragon_icon.png"; + } + //int tower = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.TURRETS_KILLED; + return $""; + } + + public string GetElderKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterSubType.Equals("ELDER_DRAGON")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetElderKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 200) + { + if (monsterSubType.Equals("ELDER_DRAGON")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetHeraldKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("RIFTHERALD")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetHeraldKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("RIFTHERALD")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetBaronKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetBaronKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetWinLossBlue() + { + foreach (var participants in jsonContentMatch.info.participants) + { + int teamId = participants.teamId; + if (teamId == 100) + { + bool win = participants.win; + if (win) + { + return $"VICTOIRE"; + } + } + } + return $"DÉFAITE"; + } + + public string GetWinLossRed() + { + foreach (var participants in jsonContentMatch.info.participants) + { + int teamId = participants.teamId; + if (teamId == 200) + { + bool win = participants.win; + if (win) + { + return $"VICTOIRE"; + } + } + } + return $"DÉFAITE"; + } + + public static void ResetColor() + { + Config.LoadFormatingDataConfigEndGameView2(); + EndGamePage.textValueOverlayView2.TopBarBlueTeamName = ""; + EndGamePage.textValueOverlayView2.TopBarRedTeamName = ""; + EndGamePage.textValueOverlayView2.TopBarBlueTeamScore = ""; + EndGamePage.textValueOverlayView2.TopBarRedTeamScore = ""; + EndGamePage.textValueOverlayView2.TopBarTimerText = ""; + EndGamePage.textValueOverlayView2.ChampionInfoText = ""; + EndGamePage.textValueOverlayView2.GoldDiffText = ""; + EndGamePage.textValueOverlayView2.BackgroundColor = true; + EndGamePage.textValueOverlayView2.TopBarGradiant = true; + EndGamePage.textValueOverlayView2.ChampionInfoGradiant = true; + EndGamePage.textValueOverlayView2.BansGradiant = true; + EndGamePage.textValueOverlayView2.GlobalStatsGradiant = true; + EndGamePage.textValueOverlayView2.GoldDiffGradiant = true; + EndGamePage.textValueOverlayView2.BackgroundColorDeg = 90; + EndGamePage.textValueOverlayView2.BackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView2.BackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView2.TopBarBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView2.TopBarBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView2.TopBarBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView2.ChampionInfoBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView2.ChampionInfoBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView2.ChampionInfoBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView2.BansBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView2.BansBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView2.BansBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView2.GlobalStatsBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView2.GlobalStatsBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView2.GlobalStatsBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView2.GoldDiffBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView2.GoldDiffBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView2.GoldDiffBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView2.TopBarBorderColor = 5; + EndGamePage.textValueOverlayView2.ChampionInfoBorderColor = 5; + EndGamePage.textValueOverlayView2.BansBorderColor = 5; + EndGamePage.textValueOverlayView2.GlobalStatsBorderColor = 5; + EndGamePage.textValueOverlayView2.GoldDiffBorderColor = 5; + + } + + public static void CreateTabGold() + { + goldDiff = new(); + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + int totalGoldBlue = 0; + int totalGoldRed = 0; + int i = 0; + foreach (var participantFrames in frames.participantFrames) + { + i++; + if (i < 6) + { + foreach (var intVar in participantFrames) + { + totalGoldBlue += Convert.ToInt32(intVar.totalGold); + } + } + else + { + foreach (var intVar in participantFrames) + { + totalGoldRed += Convert.ToInt32(intVar.totalGold); + } + } + } + int diffGold = totalGoldBlue - totalGoldRed; + goldDiff.Add(diffGold); + } + } + public static int MaxGold() + { + int max = goldDiff.Max(); + int min = goldDiff.Min(); + if (max > Math.Abs(min)) + { + return max; + } + else + { + return Math.Abs(min); + } + } + + + public static string ConvertToString(int x) + { + return $"{x}px"; + } + + public static string ConvertToString(double x) + { + return $"{x}px"; + } + + public static string ConvertToHyp(int x, double y, int prex, double prey) + { + double newY = y - prey; + double newX = x - prex; + double sqrt = Math.Sqrt(newX * newX + newY * newY); + string machin = sqrt.ToString(); + return machin.Replace(",", "."); + } + + public static string ConvertToAngle(int x, double y, int prex, double prey) + { + double newY = y - prey; + double newX = x - prex; + double sqrt = Math.Sqrt(newX * newX + newY * newY); + double sin = newY / sqrt; + double test = Math.Asin(sin) * (180 / Math.PI); + string machin = test.ToString(); + return machin.Replace(",", "."); + } + } +} diff --git a/OSL-Server/Pages/EndGame/EndGameView2Page.razor.css b/OSL-Server/Pages/EndGame/EndGameView2Page.razor.css new file mode 100644 index 0000000..bcd5dde --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView2Page.razor.css @@ -0,0 +1,636 @@ +/*##########################################################*/ +/*######################## General #########################*/ +/*##########################################################*/ + +@font-face { + font-family: MyFont; + src: url(../css/font/BeaufortForLoL-OTF/BeaufortforLOL-Bold.otf); +} + +html, body { + background-color: black; + color: white; +} + +.title { + font-family: MyFont; + font-weight: bold; + text-decoration: underline; +} + +.endGameView2 { + width: 1920px; + height: 1080px; + position: absolute; + /*background: url(./assets/endgame/image2.png);*/ + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ +} + +.content { + position: absolute; +} + + +/*##########################################################*/ +/*######################## top-bar #########################*/ +/*##########################################################*/ + +.top-bar { + top: 45px; + left: 50px; + position: absolute; + height: 115px; + width: 1820px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.top-bar-gradiant { + height: 115px; + width: 1820px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.top-bar-border { + height: 115px; + width: 1820px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.top-bar-blue-team { + left: 50px; + padding: 50px; + font-family: MyFont; + font-size: 32px; + position: absolute; + display: flex; +} + +.top-bar-blue-team-name { + padding-right: 20px; +} + +.top-bar-blue-team-winloss { + padding-right: 40px; +} + +.top-bar-blue-team-score { + /*padding-right: 30px;*/ +} + + + + +.top-bar-timer { + padding: 50px; + font-family: MyFont; + font-size: 28px; + text-align: center; + color: #c99d53; + position: absolute; +} + +.top-bar-red-team { + right: 50px; + padding: 50px; + font-family: MyFont; + font-size: 32px; + position: absolute; + display: flex; + flex-direction: row-reverse; +} + +.top-bar-red-team-name { + padding-left: 20px; +} + +.top-bar-red-team-winloss { + padding-left: 40px; +} + +.top-bar-red-team-score { + /*padding: 10px;*/ +} + + +/*##########################################################*/ +/*##################### champion-info ######################*/ +/*##########################################################*/ + +.champion-info { + top: 200px; + left: 50px; + position: absolute; + height: 390px; + width: 810px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.champion-info-gradiant { + height: 400px; + width: 810px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.champion-info-border { + height: 400px; + width: 810px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + + +.champion-info-stats { + text-align: center; + display: flex; + justify-content: center; +} + +.champion-info-stats-text { + /*left: 0px;*/ + top: 0px; + padding: 20px; + font-family: MyFont; + font-size: 32px; + position: absolute; + width: 600px; + /*color: #c99d53;*/ +} + +.champion-info-stats-blue { + top: 90px; + left: 5px; + position: absolute; +} + +.champion-info-stats-blue-group { + display: flex; +} + +.champion-info-stats-blue-group-info { + left: 60px; + position: absolute; +} + +.champion-info-stats-blue-group-text { + font-family: MyFont; + font-size: 22px; + left: 10px; + position: absolute; +} + +.champion-info-stats-blue-group-bar { + height: 15px; + width: 200px; + top: 35px; + left: 0.2px; + /*background-color: #0b849e;*/ + position: absolute; +} + +.champion-info-stats-red-group { + display: flex; +} + +.champion-info-stats-red-group-info { + right: 60px; + position: absolute; +} + +.champion-info-stats-red-group-text { + font-family: MyFont; + font-size: 22px; + right: 10px; + position: absolute; +} + +.champion-info-stats-red-group-bar { + height: 15px; + width: 200px; + top: 35px; + right: 0.2px; + /*background-color: #be1e37;*/ + position: absolute; +} + +.champion-info-stats-red { + top: 90px; + right: 5px; + position: absolute; +} + +.pick-picture { + height: 60px; +} + +/*##########################################################*/ +/*########################## Bans ##########################*/ +/*##########################################################*/ + +.bans { + top: 615px; + /*top: 645px;*/ + left: 50px; + height: 60px; + width: 810px; + position: absolute; + display: flex; + justify-content: center; + box-sizing: border-box; + align-items: center; + margin-left: 0; + margin-right: 0; + /*color: #c99d53;*/ + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ +} + +.bans-gradiant { + height: 60px; + width: 810px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.bans-border { + height: 60px; + width: 810px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.bans-info { + position: absolute; + display: flex; +} + +.bans-info-blue { + display: flex; + box-sizing: border-box; +} + +.bans-info-red { + display: flex; + box-sizing: border-box; +} + +.bans-picture { + height: 49.5px; +} + +.bans-info-text { + padding-left: 113px; + padding-right: 113px; + font-family: MyFont; + font-size: 30px; +} + + +/*##########################################################*/ +/*###################### global-stats ######################*/ +/*##########################################################*/ + +.global-stats { + top: 200px; + left: 1060px; + position: absolute; + height: 475px; + width: 810px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.global-stats-gradiant { + height: 475px; + width: 810px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.global-stats-border { + height: 475px; + width: 810px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.global-stats-center { + position: absolute; + text-align: center; + height: 475px; +} + +.global-stats-center-info { + font-family: MyFont; + font-size: 30px; + padding: 10px; + /*color: #c99d53;*/ +} + +.global-stats-blue { + font-family: MyFont; + font-size: 30px; + height: 475px; + width: 250px; + left: 0px; + position: absolute; + text-align: center; + justify-content: center; + align-items: center; +} + +.dragon-wrapper { + display: inline; + padding: 10px; +} + +.dragon-picture { + height: 30px; +} + +.global-stats-blue-info { + padding: 10px; +} + +.global-stats-red { + font-family: MyFont; + font-size: 30px; + height: 475px; + width: 250px; + right: 0px; + position: absolute; + text-align: center; + justify-content: center; + align-items: center; +} + +.global-stats-red-info { + padding: 10px; +} + + +/*##########################################################*/ +/*####################### gold-diff ########################*/ +/*##########################################################*/ + +.gold-diff { + top: 705px; + left: 50px; + position: absolute; + height: 340px; + width: 1820px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.gold-diff-gradiant { + height: 340px; + width: 1820px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.gold-diff-border { + height: 340px; + width: 1820px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.gold-diff-text { + /*left: 0px;*/ + top: 0px; + padding: 20px; + font-family: MyFont; + font-size: 32px; + position: absolute; + /*width: 1300px;*/ + color: #c99d53; +} + +.gold-graph { + position: absolute; + top: 190px; + left: 35px; +} + +.css-chart { + /*border-bottom: 1px solid;*/ + /*border-left: 1px solid;*/ + /*display: inline-block;*/ + /*height: var(--widget-size);*/ + /*margin: 5em 15em 1em 5em;*/ + /*padding: 0;*/ + position: absolute; + /*left: -5px;*/ + /*width: var(--widget-size);*/ +} + +.gold-graph-content { + position: absolute; + left: 47px; + top: 2px; +} + +.line-chart { + list-style: none; + margin: 0; + padding: 0; + position: absolute; +} + +.data-point { + background-color: white; + /*border: 2px solid lightblue;*/ + border-radius: 50%; + bottom: calc(var(--y) - 7px); + height: 15px; + left: calc(var(--x) - 7px); + position: absolute; + width: 15px; + z-index: 1; +} + +.line-segment { + /*background-color: #c99d53;*/ + bottom: var(--y); + height: 2px; + left: var(--x); + position: absolute; + transform: rotate(calc(var(--angle) * 1deg)); + transform-origin: left bottom; + width: calc(var(--hypotenuse) * 1px); +} + +.gold-graph-orizon-bar { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 0px; + left: 50px; + position: absolute; + width: 1696px; +} + +.gold-graph-vertical-bar { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 47px; + height: 200px; +} + +.gold-graph-vertical-bar-timer { + position: absolute; + top: 110px; + font-family: MyFont; + font-size: 18px; +} + +.gold-graph-vertical-bar-left { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 47px; + height: 200px; +} + +.gold-graph-vertical-bar-right { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 1750px; + height: 200px; +} + +.gold-graph-vertical-bar-mid { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 645px; + height: 200px; +} + +.gold-graph-vertical-bar-mid-left { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 345px; + height: 200px; +} + +.gold-graph-vertical-bar-mid-right { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 945px; + height: 200px; +} + +.gold-graph-orizon-bar-maxmoy { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: -50px; + left: 50px; + position: absolute; + width: 1696px; +} + +.gold-graph-orizon-bar-max { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: -100px; + left: 50px; + position: absolute; + width: 1696px; +} + +.gold-graph-orizon-bar-min { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 100px; + left: 50px; + position: absolute; + width: 1696px; +} + +.gold-graph-orizon-bar-minmoy { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 50px; + left: 50px; + position: absolute; + width: 1695px; +} + +.gold-graph-zero { + font-family: MyFont; + font-size: 22px; + position: absolute; + left: 15px; + top: -15px; +} + +.gold-graph-max { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: -120px; +} + +.gold-graph-maxmoy { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: -60px; +} + +.gold-graph-min { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: 80px; +} + +.gold-graph-minmoy { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: 40px; +} + +.gold-graph-time-1 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 25px; + top: 110px; +} + +.gold-graph-time-5 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 1730px; + top: 110px; +} + diff --git a/OSL-Server/Pages/EndGame/EndGameView3Page.razor b/OSL-Server/Pages/EndGame/EndGameView3Page.razor new file mode 100644 index 0000000..6c07bdc --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView3Page.razor @@ -0,0 +1,476 @@ +@page "/endgame/view3" +@using OSL_Server.DataReciveClient.Processing.EndGame; +@layout EmptyLayout + +End Game View 3 + +@{ + string tempsBackgroundColor; + @if (EndGamePage.textValueOverlayView3.BackgroundColor) + { + tempsBackgroundColor = formatingData.BackgroundColor; + //tempsBackgroundColor = ""; + } + else + { + tempsBackgroundColor = ""; + } +} + +
+ +
+ @if (EndGameInfo.jsonContentEndOfMatch != null && EndGameInfo.jsonContentMatch != null && EndGameInfo.jsonContentTimeline != null) + { + string tempsTopBarGradiant; + string tempsChampionInfoGradiant; + string tempsBansGradiant; + string tempsGlobalStatsGradiant; + string tempsGoldDiffGradiant; + + @if (EndGamePage.textValueOverlayView3.TopBarGradiant) + { + tempsTopBarGradiant = formatingData.TopBarGradiant; + } + else + { + tempsTopBarGradiant = ""; + } + @if (EndGamePage.textValueOverlayView3.ChampionInfoGradiant) + { + tempsChampionInfoGradiant = formatingData.ChampionInfoGradiant; + } + else + { + tempsChampionInfoGradiant = ""; + } + @if (EndGamePage.textValueOverlayView3.BansGradiant) + { + tempsBansGradiant = formatingData.BansGradiant; + } + else + { + tempsBansGradiant = ""; + } + @if (EndGamePage.textValueOverlayView3.GlobalStatsGradiant) + { + tempsGlobalStatsGradiant = formatingData.GlobalStatsGradiant; + } + else + { + tempsGlobalStatsGradiant = ""; + } + @if (EndGamePage.textValueOverlayView3.GoldDiffGradiant) + { + tempsGoldDiffGradiant = formatingData.GoldDiffGradiant; + } + else + { + tempsGoldDiffGradiant = ""; + } + + string tempsTopBarBackground; + string tempsChampionInfoBackground; + string tempsBansBackground; + string tempsGlobalStatsBackground; + string tempsGoldDiffBackground; + + @if (EndGamePage.textValueOverlayView3.TopBarBackground) + { + tempsTopBarBackground = formatingData.TopBarBackgroundColor; + } + else + { + tempsTopBarBackground = ""; + } + @if (EndGamePage.textValueOverlayView3.ChampionInfoBackground) + { + tempsChampionInfoBackground = formatingData.ChampionInfoBackgroundColor; + } + else + { + tempsChampionInfoBackground = ""; + } + @if (EndGamePage.textValueOverlayView3.BansBackground) + { + tempsBansBackground = formatingData.BansBackgroundColor; + } + else + { + tempsBansBackground = ""; + } + @if (EndGamePage.textValueOverlayView3.GlobalStatsBackground) + { + tempsGlobalStatsBackground = formatingData.GlobalStatsBackgroundColor; + } + else + { + tempsGlobalStatsBackground = ""; + } + @if (EndGamePage.textValueOverlayView3.GoldDiffBackground) + { + tempsGoldDiffBackground = formatingData.GoldDiffBackgroundColor; + } + else + { + tempsGoldDiffBackground = ""; + } + + +
+
+
+
+
+
+ @formatingData.TopBarBlueTeamName +
+
+ @GetWinLossBlue() +
+ +
+
+
+ @formatingData.TopBarBlueTeamScore +
+ +
+ - +
+
+ @formatingData.TopBarRedTeamScore +
+
+
+
+ @formatingData.TopBarRedTeamName +
+
+ @GetWinLossRed() +
+
+
+
+
+ @formatingData.TopBarTimerText +
+
+ @GetTimer() +
+
+
+
+
+
+
+
+ @formatingData.ChampionInfoText +
+
+ + @foreach (var players in EndGameInfo.jsonContentEndOfMatch.teams[0].players) + { +
+
+ +
+
+
+ @ConvertToK(Convert.ToDouble(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS)) +
+
+
+
+
+ } +
+ +
+ @foreach (var players in EndGameInfo.jsonContentEndOfMatch.teams[1].players) + { +
+
+ +
+
+
+ @ConvertToK(Convert.ToDouble(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS)) +
+
+
+
+
+ } +
+
+
+
+
+
+
+
+ @foreach (var blueBans in EndGameInfo.jsonContentMatch.info.teams[0].bans) + { +
+ +
+ } +
+
+ BANS +
+
+ @foreach (var blueBans in EndGameInfo.jsonContentMatch.info.teams[1].bans) + { +
+ +
+ } +
+
+
+
+
+
+
+
+ @GetKDABlue() +
+
+ @GetGoldBlue() +
+
+ @GetTowerKillBlue() +
+
+
+ @foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + @foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null && !monsterSubType.Equals("ELDER_DRAGON")) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { +
+ +
+ } + } + } + } +
+
+
+ @GetElderKillBlue() +
+
+ @GetHeraldKillBlue() +
+
+ @GetBaronKillBlue() +
+
+
+
+ K/D/A +
+
+ Gold +
+
+ Towers +
+
+ Dragons +
+
+ Elder dragons +
+
+ Heralds +
+
+ Barons +
+
+
+
+ @GetKDARed() +
+
+ @GetGoldRed() +
+
+ @GetTowerKillRed() +
+
+
+ @foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + @foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null && !monsterSubType.Equals("ELDER_DRAGON")) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 200) + { +
+ +
+ } + } + } + } +
+
+
+ @GetElderKillRed() +
+
+ @GetHeraldKillRed() +
+
+ @GetBaronKillRed() +
+
+
+
+
+
+
+ @formatingData.GoldDiffText +
+
+
+
+
    + @{ + CreateTabGold(); + double x = 0; + } + @for (int i = 0; i < goldDiff.Count - 1; i++) + { + double y = (goldDiff[i] * 125) / MaxGold(); + double nexty = (goldDiff[i + 1] * 125) / MaxGold(); + double nextx = x + 845 / goldDiff.Count(); + if (i == 0) + { +
  • +
    +
    +
  • + } + else + { + if (goldDiff[i] > 0) + { +
  • +
    +
    +
  • + } + else if (goldDiff[i] == 0) + { +
  • +
    +
    +
  • + } + else + { +
  • +
    +
    +
  • + } + } + if (i == goldDiff.Count - 2) + { +
  • +
    +
  • + } + x += 845 / goldDiff.Count(); + } +
+
+
+
+
+
+
+
+
+ + @{ + int decalageX = 807 / (GetTimerInt() / 5); + int leftDistance = 47; + TimeSpan timerFive = new TimeSpan(0, 0, 0); + } + @for (int i = 0; i < (GetTimerInt() / 5) - 1; i++) + { + leftDistance = leftDistance + decalageX; + timerFive = timerFive.Add(new TimeSpan(0, 5, 0)); +
+
@timerFive.ToString("mm':'ss")
+ } +
+
+ 0 +
+
+ @GetTimer() +
+
+ 00:00 +
+
+ @ConvertToK(MaxGold()) +
+
+ @ConvertToK(MaxGold()/2) +
+
+ @ConvertToK(MaxGold()/2) +
+
+ @ConvertToK(MaxGold()) +
+
+
+ } + else + { +
+

Info! Not end game information found

+
+ } +
+ +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/EndGame/EndGameView3Page.razor.cs b/OSL-Server/Pages/EndGame/EndGameView3Page.razor.cs new file mode 100644 index 0000000..9701601 --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView3Page.razor.cs @@ -0,0 +1,574 @@ +using OSL_Server.Configuration; +using OSL_Server.DataReciveClient.Processing.EndGame; +using static OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo; +using static OSL_Server.Pages.EndGameTestPage; + +namespace OSL_Server.Pages.EndGame +{ + public partial class EndGameView3Page + { + private static OSLLogger _logger = new OSLLogger("EndGameView3Page"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public static List goldDiff = new(); + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + + public string BackgroundColor { get; set; } + public string BackgroundColorDeg { get; set; } + public string BackgroundColorColor1 { get; set; } + public string BackgroundColorPercent1 { get; set; } + public string BackgroundColorColor2 { get; set; } + public string BackgroundColorPercent2 { get; set; } + + public string TopBarBackgroundColor { get; set; } + public string TopBarBackgroundColorDeg { get; set; } + public string TopBarBackgroundColorColor1 { get; set; } + public string TopBarBackgroundColorPercent1 { get; set; } + public string TopBarBackgroundColorColor2 { get; set; } + public string TopBarBackgroundColorPercent2 { get; set; } + public string TopBarGradiant { get; set; } + public string TopBarBorderColor { get; set; } + public string TopBarTimerText { get; set; } + public string TopBarTimerTextColor { get; set; } + public string TopBarTimerColor { get; set; } + public string TopBarBlueTeamName { get; set; } + public string TopBarBlueTeamScore { get; set; } + public string TopBarBlueTeamNameColor { get; set; } + public string TopBarBlueTeamScoreColor { get; set; } + public string TopBarBlueTeamWinLossColor { get; set; } + public string TopBarRedTeamName { get; set; } + public string TopBarRedTeamScore { get; set; } + public string TopBarRedTeamNameColor { get; set; } + public string TopBarRedTeamScoreColor { get; set; } + public string TopBarRedTeamWinLossColor { get; set; } + + public string ChampionInfoBackgroundColor { get; set; } + public string ChampionInfoBackgroundColorDeg { get; set; } + public string ChampionInfoBackgroundColorColor1 { get; set; } + public string ChampionInfoBackgroundColorPercent1 { get; set; } + public string ChampionInfoBackgroundColorColor2 { get; set; } + public string ChampionInfoBackgroundColorPercent2 { get; set; } + public string ChampionInfoGradiant { get; set; } + public string ChampionInfoBorderColor { get; set; } + public string ChampionInfoText { get; set; } + public string ChampionInfoTextColor { get; set; } + public string ChampionInfoBlueBarColor { get; set; } + public string ChampionInfoRedBarColor { get; set; } + public string ChampionInfoBlueDegaTextColor { get; set; } + public string ChampionInfoRedDegaTextColor { get; set; } + + public string BansBackgroundColor { get; set; } + public string BansBackgroundColorDeg { get; set; } + public string BansBackgroundColorColor1 { get; set; } + public string BansBackgroundColorPercent1 { get; set; } + public string BansBackgroundColorColor2 { get; set; } + public string BansBackgroundColorPercent2 { get; set; } + public string BansGradiant { get; set; } + public string BansBorderColor { get; set; } + public string BansTextColor { get; set; } + + public string GlobalStatsBackgroundColor { get; set; } + public string GlobalStatsBackgroundColorDeg { get; set; } + public string GlobalStatsBackgroundColorColor1 { get; set; } + public string GlobalStatsBackgroundColorPercent1 { get; set; } + public string GlobalStatsBackgroundColorColor2 { get; set; } + public string GlobalStatsBackgroundColorPercent2 { get; set; } + public string GlobalStatsGradiant { get; set; } + public string GlobalStatsBorderColor { get; set; } + public string GlobalStatsSeparationColor { get; set; } + public string GlobalStatsTextColor { get; set; } + public string GlobalStatsBlueTextColor { get; set; } + public string GlobalStatsRedTextColor { get; set; } + + public string GoldDiffBackgroundColor { get; set; } + public string GoldDiffBackgroundColorDeg { get; set; } + public string GoldDiffBackgroundColorColor1 { get; set; } + public string GoldDiffBackgroundColorPercent1 { get; set; } + public string GoldDiffBackgroundColorColor2 { get; set; } + public string GoldDiffBackgroundColorPercent2 { get; set; } + public string GoldDiffGradiant { get; set; } + public string GoldDiffBorderColor { get; set; } + public string GoldDiffText { get; set; } + public string GoldDiffTextColor { get; set; } + public string GoldDiffBlueTextGoldColor { get; set; } + public string GoldDiffRedTextGoldColor { get; set; } + public string GoldDiffZeroTextGoldColor { get; set; } + public string GoldDiffBluePointGoldColor { get; set; } + public string GoldDiffRedPointGoldColor { get; set; } + public string GoldDiffZeroPointGoldColor { get; set; } + public string GoldDiffStartEndPointGoldColor { get; set; } + public string GoldDiffLinkPointGoldColor { get; set; } + public string GoldDiffBarColor { get; set; } + + } + + public string GetTimer() + { + try + { + int gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + return time.ToString("mm':'ss"); + } + catch + { + return "00:00"; + } + } + + public int GetTimerInt() + { + try + { + int gameLength = EndGameInfo.jsonContentMatch.info.gameDuration; + TimeSpan time = TimeSpan.FromSeconds(gameLength); + int timeLength = int.Parse(time.ToString("mm")); + return timeLength; + } + catch + { + return 0; + } + } + + public string GetChampionPathByPath(string championId) + { + string[] parsePath = championId.Split("/"); + string[] parseId = parsePath[parsePath.Length - 1].Split("."); + return GetChampionPath(parseId[0]); + } + + public string GetChampionPath(string championId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{championId}/default-square.png"; + } + + public string ConvertToK(double total) + { + if (total > 1000000) + { + return $"{Math.Round(total / 1000000, 1)} M"; + } + else if (total > 1000) + { + return $"{Math.Round(total / 1000, 1)}k"; + } + else + { + return $"{total}"; + } + } + + public string ConvertToWidth(int total) + { + int max = 0; + foreach (var teams in EndGameInfo.jsonContentEndOfMatch.teams) + { + foreach (var players in teams.players) + { + if (Convert.ToInt32(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS) > max) + { + max = Convert.ToInt32(players.stats.TOTAL_DAMAGE_DEALT_TO_CHAMPIONS); + } + } + } + double calculPourcent2 = (total * 360) / max; + return $"{calculPourcent2}px"; + } + + public string GetKDABlue() + { + string kill = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.CHAMPIONS_KILLED; + string death = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.NUM_DEATHS; + string assist = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.ASSISTS; + return $"{kill}/{death}/{assist}"; + } + public string GetKDARed() + { + string kill = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.CHAMPIONS_KILLED; + string death = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.NUM_DEATHS; + string assist = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.ASSISTS; + return $"{kill}/{death}/{assist}"; + } + + public string GetGoldBlue() + { + float gold = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.GOLD_EARNED; + if (gold > 1000000) + { + return $"{Math.Round(gold / 1000000, 1)} M"; + } + else if (gold > 1000) + { + return $"{Math.Round(gold / 1000, 1)} k"; + } + else + { + return $"{gold}"; + } + } + public string GetGoldRed() + { + float gold = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.GOLD_EARNED; + if (gold > 1000000) + { + return $"{Math.Round(gold / 1000000, 1)} M"; + } + else if (gold > 1000) + { + return $"{Math.Round(gold / 1000, 1)} k"; + } + else + { + return $"{gold}"; + } + } + + public string GetTowerKillBlue() + { + int tower = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.TURRETS_KILLED; + return $"{tower}"; + } + + public string GetTowerKillRed() + { + int tower = EndGameInfo.jsonContentEndOfMatch.teams[1].stats.TURRETS_KILLED; + return $"{tower}"; + } + + public string GetDragonsKill(string monsterSubType) + { + if (monsterSubType != null && monsterSubType.Equals("HEXTECH_DRAGON")) + { + return $"./assets/endgame/dragon/hextech_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("WATER_DRAGON")) + { + return $"./assets/endgame/dragon/ocean_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("FIRE_DRAGON")) + { + return $"./assets/endgame/dragon/infernal_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("AIR_DRAGON")) + { + return $"./assets/endgame/dragon/cloud_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("CHEMTECH_DRAGON")) + { + return $"./assets/endgame/dragon/chemtech_dragon_icon.png"; + } + if (monsterSubType != null && monsterSubType.Equals("MONTAIN_DRAGON")) + { + return $"./assets/endgame/dragon/mountain_dragon_icon.png"; + } + //int tower = EndGameInfo.jsonContentEndOfMatch.teams[0].stats.TURRETS_KILLED; + return $""; + } + + public string GetElderKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterSubType.Equals("ELDER_DRAGON")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetElderKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterSubType = events.monsterSubType; + if (monsterSubType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 200) + { + if (monsterSubType.Equals("ELDER_DRAGON")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetHeraldKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("RIFTHERALD")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetHeraldKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("RIFTHERALD")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetBaronKillBlue() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetBaronKillRed() + { + int nbElderKill = 0; + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + foreach (var events in frames.events) + { + string monsterType = events.monsterType; + if (monsterType != null) + { + int killerTeamId = events.killerTeamId; + if (killerTeamId == 100) + { + if (monsterType != null && monsterType.Equals("BARON_NASHOR")) + { + nbElderKill++; + } + } + } + } + } + return $"{nbElderKill}"; + } + + public string GetWinLossBlue() + { + foreach (var participants in jsonContentMatch.info.participants) + { + int teamId = participants.teamId; + if (teamId == 100) + { + bool win = participants.win; + if (win) + { + return $"VICTOIRE"; + } + } + } + return $"DÉFAITE"; + } + + public string GetWinLossRed() + { + foreach (var participants in jsonContentMatch.info.participants) + { + int teamId = participants.teamId; + if (teamId == 200) + { + bool win = participants.win; + if (win) + { + return $"VICTOIRE"; + } + } + } + return $"DÉFAITE"; + } + + public static void ResetColor() + { + Config.LoadFormatingDataConfigEndGameView3(); + EndGamePage.textValueOverlayView3.TopBarBlueTeamName = ""; + EndGamePage.textValueOverlayView3.TopBarRedTeamName = ""; + EndGamePage.textValueOverlayView3.TopBarBlueTeamScore = ""; + EndGamePage.textValueOverlayView3.TopBarRedTeamScore = ""; + EndGamePage.textValueOverlayView3.TopBarTimerText = ""; + EndGamePage.textValueOverlayView3.ChampionInfoText = ""; + EndGamePage.textValueOverlayView3.GoldDiffText = ""; + EndGamePage.textValueOverlayView3.BackgroundColor = true; + EndGamePage.textValueOverlayView3.TopBarGradiant = false; + EndGamePage.textValueOverlayView3.ChampionInfoGradiant = false; + EndGamePage.textValueOverlayView3.BansGradiant = false; + EndGamePage.textValueOverlayView3.GlobalStatsGradiant = false; + EndGamePage.textValueOverlayView3.GoldDiffGradiant = false; + EndGamePage.textValueOverlayView3.TopBarBackground = false; + EndGamePage.textValueOverlayView3.ChampionInfoBackground = false; + EndGamePage.textValueOverlayView3.BansBackground = false; + EndGamePage.textValueOverlayView3.GlobalStatsBackground = false; + EndGamePage.textValueOverlayView3.GoldDiffBackground = false; + EndGamePage.textValueOverlayView3.BackgroundColorDeg = 90; + EndGamePage.textValueOverlayView3.BackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView3.BackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView3.TopBarBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView3.TopBarBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView3.TopBarBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView3.ChampionInfoBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView3.ChampionInfoBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView3.ChampionInfoBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView3.BansBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView3.BansBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView3.BansBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView3.GlobalStatsBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView3.GlobalStatsBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView3.GlobalStatsBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView3.GoldDiffBackgroundColorDeg = 90; + EndGamePage.textValueOverlayView3.GoldDiffBackgroundColorPercent1 = 0; + EndGamePage.textValueOverlayView3.GoldDiffBackgroundColorPercent2 = 100; + EndGamePage.textValueOverlayView3.TopBarBorderColor = 5; + EndGamePage.textValueOverlayView3.ChampionInfoBorderColor = 5; + EndGamePage.textValueOverlayView3.BansBorderColor = 5; + EndGamePage.textValueOverlayView3.GlobalStatsBorderColor = 5; + EndGamePage.textValueOverlayView3.GoldDiffBorderColor = 5; + + } + + public static void CreateTabGold() + { + goldDiff = new(); + foreach (var frames in EndGameInfo.jsonContentTimeline.info.frames) + { + int totalGoldBlue = 0; + int totalGoldRed = 0; + int i = 0; + foreach (var participantFrames in frames.participantFrames) + { + i++; + if (i < 6) + { + foreach (var intVar in participantFrames) + { + totalGoldBlue += Convert.ToInt32(intVar.totalGold); + } + } + else + { + foreach (var intVar in participantFrames) + { + totalGoldRed += Convert.ToInt32(intVar.totalGold); + } + } + } + int diffGold = totalGoldBlue - totalGoldRed; + goldDiff.Add(diffGold); + } + } + public static int MaxGold() + { + int max = goldDiff.Max(); + int min = goldDiff.Min(); + if (max > Math.Abs(min)) + { + return max; + } + else + { + return Math.Abs(min); + } + } + + + public static string ConvertToString(int x) + { + return $"{x}px"; + } + + public static string ConvertToString(double x) + { + return $"{x}px"; + } + + public static string ConvertToHyp(double x, double y, double prex, double prey) + { + double newY = y - prey; + double newX = x - prex; + double sqrt = Math.Sqrt(newX * newX + newY * newY); + string machin = sqrt.ToString(); + return machin.Replace(",", "."); + } + + public static string ConvertToAngle(double x, double y, double prex, double prey) + { + double newY = y - prey; + double newX = x - prex; + double sqrt = Math.Sqrt(newX * newX + newY * newY); + double sin = newY / sqrt; + double test = Math.Asin(sin) * (180 / Math.PI); + string machin = test.ToString(); + return machin.Replace(",", "."); + } + } +} diff --git a/OSL-Server/Pages/EndGame/EndGameView3Page.razor.css b/OSL-Server/Pages/EndGame/EndGameView3Page.razor.css new file mode 100644 index 0000000..0d4a27d --- /dev/null +++ b/OSL-Server/Pages/EndGame/EndGameView3Page.razor.css @@ -0,0 +1,688 @@ +/*##########################################################*/ +/*######################## General #########################*/ +/*##########################################################*/ + +@font-face { + font-family: MyFont; + src: url(../css/font/BeaufortForLoL-OTF/BeaufortforLOL-Bold.otf); +} + +html, body { + background-color: black; + color: white; +} + +.title { + font-family: MyFont; + font-weight: bold; + text-decoration: underline; +} + +.endGameView3 { + width: 1920px; + height: 1080px; + position: absolute; + /*background: url(./assets/endgame/image3.png);*/ + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ +} + +.content { + /*position: absolute;*/ + width: 1920px; + height: 1080px; + position: absolute; +} + + +/*##########################################################*/ +/*######################## top-bar #########################*/ +/*##########################################################*/ + +.top-bar { + /*visibility: hidden;*/ + top: 40px; + left: 90px; + position: absolute; + height: 215px; + width: 810px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + /*display: flex;*/ + justify-content: center; + align-items: center; +} + +.top-bar-gradiant { + height: 215px; + width: 810px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.top-bar-border { + height: 215px; + width: 810px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.top-bar-team { + display: flex; + font-family: MyFont; + font-size: 42px; + justify-content: center; + align-items: center; +} + +.top-bar-blue-team { + position: absolute; + left: 20px; + top: 20px; +} + +.top-bar-blue-team-name { + padding-left: 20px; +} + +.top-bar-team-score { + position: relative; + display: flex; + top: 50px; +} + +.top-bar-separation-team-score { + margin-left: 10px; + margin-right: 10px; +} + +.top-bar-red-team { + position: absolute; + right: 20px; + top: 20px; + text-align: right; +} + +.top-bar-red-team-name { + padding-right: 20px; +} + +.top-bar-timer { + top: 80px; + display: flex; + font-family: MyFont; + font-size: 32px; + justify-content: center; + align-items: center; + position: relative; +} + +.timer-text { + padding-right: 10px; +} +/*##########################################################*/ +/*##################### champion-info ######################*/ +/*##########################################################*/ +.champion-info { + /*visibility: hidden;*/ + top: 480px; + left: 950px; + position: absolute; + height: 515px; + width: 885px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.champion-info-gradiant { + height: 515px; + width: 885px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.champion-info-border { + height: 515px; + width: 885px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + + +.champion-info-stats { + text-align: center; + display: flex; + justify-content: center; +} + +.champion-info-stats-text { + /*left: 0px;*/ + top: 0px; + padding: 20px; + font-family: MyFont; + font-size: 32px; + position: absolute; + width: 600px; + /*color: #c99d53;*/ +} + +.champion-info-stats-blue { + top: 70px; + left: 5px; + position: absolute; +} + +.champion-info-stats-blue-group { + display: flex; +} + +.champion-info-stats-blue-group-info { + left: 80px; + position: absolute; +} + +.champion-info-stats-blue-group-text { + top: -5px; + font-family: MyFont; + font-size: 30px; + left: 10px; + position: absolute; +} + +.champion-info-stats-blue-group-bar { + height: 35px; + width: 200px; + top: 35px; + left: 0.2px; + /*background-color: #0b849e;*/ + position: absolute; +} + +.champion-info-stats-red-group { + display: flex; +} + +.champion-info-stats-red-group-info { + right: 80px; + position: absolute; +} + +.champion-info-stats-red-group-text { + top: -5px; + font-family: MyFont; + font-size: 30px; + right: 10px; + position: absolute; +} + +.champion-info-stats-red-group-bar { + height: 35px; + width: 200px; + top: 35px; + right: 0.2px; + /*background-color: #be1e37;*/ + position: absolute; +} + +.champion-info-stats-red { + top: 70px; + right: 5px; + position: absolute; +} + +.pick-wrapper { + padding-bottom: 10px; +} + +.pick-picture { + height: 80px; +} + +/*##########################################################*/ +/*########################## Bans ##########################*/ +/*##########################################################*/ + +.bans { + /*visibility: hidden;*/ + top: 890px; + /*top: 645px;*/ + left: 90px; + height: 110px; + width: 810px; + position: absolute; + display: flex; + justify-content: center; + box-sizing: border-box; + align-items: center; + margin-left: 0; + margin-right: 0; + /*border-bottom: 2px solid #ffffff;*/ + /*color: #c99d53;*/ + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ +} + +.bans-gradiant { + height: 110px; + width: 810px; + position: absolute; + /*border-bottom: 2px solid #ffffff;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.bans-border { + height: 110px; + width: 810px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.bans-info { + position: absolute; + display: flex; + align-items: center; + /*border-top: 2px solid #ffffff;*/ + /*border-bottom: 2px solid #ffffff;*/ +} + +.bans-info-blue { + display: flex; + box-sizing: border-box; +} + + .bans-info-blue .bans-wrapper { + padding-left: 10px; + } + +.bans-info-red { + display: flex; + box-sizing: border-box; +} + + .bans-info-red .bans-wrapper { + padding-right: 10px; + } + +.bans-picture { + height: 61px; +} + +.bans-info-text { + padding-left: 7.4px; + padding-right: 7.4px; + font-family: MyFont; + font-size: 30px; +} + + +/*##########################################################*/ +/*###################### global-stats ######################*/ +/*##########################################################*/ + +.global-stats { + /*visibility: hidden;*/ + top: 290px; + left: 90px; + position: absolute; + height: 600px; + width: 810px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.global-stats-gradiant { + height: 600px; + width: 810px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.global-stats-border { + height: 600px; + width: 810px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.global-stats-center { + position: absolute; + text-align: center; + height: 600px; +} + +.global-stats-center-info { + font-family: MyFont; + font-size: 30px; + padding: 20px; + max-height: 87px; + /*color: #c99d53;*/ + /*border-top: 2px solid #ffffff;*/ +} + + .global-stats-center-info:nth-child(7) { + /*border-bottom: 2px solid #ffffff;*/ + } + +.global-stats-blue { + font-family: MyFont; + font-size: 40px; + height: 600px; + width: 300px; + left: 0px; + position: absolute; + /*text-align: center;*/ + justify-content: center; + align-items: center; +} + +.dragon-wrapper-info { + /*width: 300px;*/ + height: 60px; +} + +.global-stats-blue .dragon-wrapper { + display: inline; + padding-right: 12.5px; +} + +.dragon-picture { + height: 50px; +} + +.global-stats-blue-info { + padding: 12.5px; + max-height: 87px; + /*border-top: 2px solid #ffffff;*/ +} + + .global-stats-blue-info:nth-child(7) { + /*border-bottom: 2px solid #ffffff;*/ + } + +.global-stats-red { + font-family: MyFont; + font-size: 40px; + height: 600px; + width: 300px; + right: 0px; + position: absolute; + text-align: right; + /*justify-content: center;*/ + /*align-items: center;*/ +} + + .global-stats-red .dragon-wrapper { + width: 84px; + display: inline; + padding-left: 12.5px; + } + +.global-stats-red-info { + padding: 12.5px; + /*border-top: 2px solid #ffffff;*/ + max-height: 87px; +} + + .global-stats-red-info:nth-child(7) { + /*border-bottom: 2px solid #ffffff;*/ + } + + +/*##########################################################*/ +/*####################### gold-diff ########################*/ +/*##########################################################*/ + +.gold-diff { + /*visibility: hidden;*/ + top: 50px; + left: 950px; + position: absolute; + height: 400px; + width: 885px; + /*background-image: linear-gradient(90deg, #0b849e 0%, #be1e37 100%);*/ + display: flex; + justify-content: center; + align-items: center; +} + +.gold-diff-gradiant { + height: 400px; + width: 885px; + position: absolute; + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.72) 100% );*/ +} + +.gold-diff-border { + height: 400px; + width: 885px; + position: absolute; + /*border: 5px solid #c99d53;*/ +} + +.gold-diff-text { + /*left: 0px;*/ + top: 0px; + padding: 20px; + font-family: MyFont; + font-size: 32px; + position: absolute; + /*width: 1300px;*/ + color: #c99d53; +} + +.gold-graph { + position: absolute; + top: 180px; + left: 15px; +} + +.gold-graph-content { + position: absolute; + left: 48px; + top: 27px; +} + +.css-chart { + /*border-bottom: 1px solid;*/ + /*border-left: 1px solid;*/ + /*display: inline-block;*/ + /*height: var(--widget-size);*/ + /*margin: 5em 15em 1em 5em;*/ + /*padding: 0;*/ + position: absolute; + /*left: 25px;*/ + /*top: 25px;*/ + /*width: var(--widget-size);*/ +} + +.line-chart { + position: absolute; + list-style: none; + margin: 0; + padding: 0; +} + +.data-point { + background-color: white; + /*border: 2px solid lightblue;*/ + border-radius: 50%; + bottom: calc(var(--y) - 7px); + height: 15px; + left: calc(var(--x) - 7px); + position: absolute; + width: 15px; + z-index: 1; +} + +.line-segment { + /*background-color: #c99d53;*/ + bottom: var(--y); + height: 2px; + left: var(--x); + position: absolute; + transform: rotate(calc(var(--angle) * 1deg)); + transform-origin: left bottom; + width: calc(var(--hypotenuse) * 1px); +} + +.gold-graph-orizon-bar { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 25px; + left: 50px; + position: absolute; + width: 800px; +} + +.gold-graph-vertical-bar { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 47px; + height: 250px; +} + +.gold-graph-vertical-bar-timer { + position: absolute; + top: 170px; + font-family: MyFont; + font-size: 18px; +} + +.gold-graph-vertical-bar-left { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 47px; + height: 250px; +} + +.gold-graph-vertical-bar-right { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 854px; + height: 250px; +} + +.gold-graph-vertical-bar-mid { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 645px; + height: 200px; +} + +.gold-graph-vertical-bar-mid-left { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 345px; + height: 200px; +} + +.gold-graph-vertical-bar-mid-right { + /*border: 1px dashed #ffffff;*/ + position: absolute; + top: -100px; + left: 945px; + height: 200px; +} + +.gold-graph-orizon-bar-maxmoy { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: -38px; + left: 50px; + position: absolute; + width: 800px; +} + +.gold-graph-orizon-bar-max { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: -100px; + left: 50px; + position: absolute; + width: 800px; +} + +.gold-graph-orizon-bar-min { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 150px; + left: 50px; + position: absolute; + width: 800px; +} + +.gold-graph-orizon-bar-minmoy { + /*height: 2px;*/ + border: 1px dashed #ffffff; + /*background-color: #000000;*/ + top: 88px; + left: 50px; + position: absolute; + width: 800px; +} + +.gold-graph-zero { + font-family: MyFont; + font-size: 22px; + position: absolute; + left: 15px; + top: 10px; +} + +.gold-graph-max { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: -120px; +} + +.gold-graph-maxmoy { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: -50px; +} + +.gold-graph-min { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: 135px; +} + +.gold-graph-minmoy { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: -9px; + top: 75px; +} + +.gold-graph-time-1 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 25px; + top: 170px; +} + +.gold-graph-time-5 { + font-family: MyFont; + font-size: 18px; + position: absolute; + left: 820px; + top: 170px; +} diff --git a/OSL-Server/Pages/EndGamePage.razor b/OSL-Server/Pages/EndGamePage.razor deleted file mode 100644 index 200f9b6..0000000 --- a/OSL-Server/Pages/EndGamePage.razor +++ /dev/null @@ -1,13 +0,0 @@ -@page "/endgame" - -End Game -
-
-
-

End Game

-
-
-
-@code { - -} diff --git a/OSL-Server/Pages/EndGamePage.razor.cs b/OSL-Server/Pages/EndGamePage.razor.cs deleted file mode 100644 index 5cd61af..0000000 --- a/OSL-Server/Pages/EndGamePage.razor.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace OSL_Server.Pages -{ - public partial class EndGamePage - { - private static OSLLogger _logger = new OSLLogger("CDragonPage"); - } -} diff --git a/OSL-Server/Pages/InGame/InGamePage.razor b/OSL-Server/Pages/InGame/InGamePage.razor new file mode 100644 index 0000000..d1e9ff5 --- /dev/null +++ b/OSL-Server/Pages/InGame/InGamePage.razor @@ -0,0 +1,305 @@ +@page "/ingame" +@using MudBlazor + +In Game +
+
+
+

In Game :

+
+

With riot overlay

+

+ Use of the riot overlay with added information: +
- Team, dragon and baron frame +
- Name of the teams and their number of victory +
- Frame for video/logo/... +

+ @*View1*@ +
+

In Game Overlay 1

+ Link Overlay 1 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Color Blue Team Text @InGameView1Page.formatingData.ColorBlueTeamText +
Color Blue Team Score Text @InGameView1Page.formatingData.ColorBlueTeamScoreText +
Color Red Team Text @InGameView1Page.formatingData.ColorRedTeamText +
Color Red Team Score Text @InGameView1Page.formatingData.ColorRedTeamScoreText + +
+
+
+ + + +
+
+
+ + @*View2*@ +
+

In Game Overlay 2

+ Link Overlay 2 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Color Blue Team Text @InGameView2Page.formatingData.ColorBlueTeamText +
Color Blue Team Score Text @InGameView2Page.formatingData.ColorBlueTeamScoreText +
Color Red Team Text @InGameView2Page.formatingData.ColorRedTeamText +
Color Red Team Score Text @InGameView2Page.formatingData.ColorRedTeamScoreText + +
+
+
+ + + +
+
+
+ + @*View3*@ +
+

In Game Overlay 3

+ Link Overlay 3 + +
+ + + + + + + + +
Color Replay Info Text @InGameView3Page.formatingData.ColorReplayInfoText + + + + + + + + + + + + + +
+
+
+ + + +
+
+
+ +

+

Without riot overlay

+

+ Disable riot overlay to add more information +
- Team, dragon and baron frame +
- Name of the teams and their number of victory +
- Frame for video/logo/... +
- Custom display dragon, herald, baron, herald, level up, itemps buy, kill, tower, timer, gold +

+ In progress +
+
+
+
+
+ + + + + +@code { + public static TextValueOverlayView1 textValueOverlayView1 = new(); + public static TextValueOverlayView2 textValueOverlayView2 = new(); + public static TextValueOverlayView3 textValueOverlayView3 = new(); + + public bool DisableToolbar { get; set; } = true; + public bool DisableAlpha { get; set; } + public bool DisableColorField { get; set; } + public bool DisablePreview { get; set; } + public bool DisableSliders { get; set; } + public bool DisableInputs { get; set; } + public bool DisableModeSwitch { get; set; } + + public ColorPickerMode ColorPickerMode { get; set; } +} diff --git a/OSL-Server/Pages/InGamePage.razor.cs b/OSL-Server/Pages/InGame/InGamePage.razor.cs similarity index 82% rename from OSL-Server/Pages/InGamePage.razor.cs rename to OSL-Server/Pages/InGame/InGamePage.razor.cs index 6cee258..da41d60 100644 --- a/OSL-Server/Pages/InGamePage.razor.cs +++ b/OSL-Server/Pages/InGame/InGamePage.razor.cs @@ -1,6 +1,6 @@ using System.ComponentModel.DataAnnotations; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.InGame { public partial class InGamePage { @@ -263,5 +263,78 @@ public static void InputCheckboxSubmit() } } + + private struct OverlayViewEnableOrDisable + { + public string text { get; set; } + public string color { get; set; } + + public OverlayViewEnableOrDisable() + { + text = ""; + color = ""; + } + + public OverlayViewEnableOrDisable(string text, string color) + { + this.text = text; + this.color = color; + } + + } + + private OverlayViewEnableOrDisable displayContentView1Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView2Button = new("display", "#008000"); + private OverlayViewEnableOrDisable displayContentView3Button = new("display", "#008000"); + + private string displayContentView1 = "none"; + private void HideOrDisplayContentView1() + { + if (displayContentView1.Equals("none")) + { + displayContentView1Button.text = "hide"; + displayContentView1Button.color = "#be1e37"; + displayContentView1 = "content"; + } + else + { + displayContentView1Button.text = "display"; + displayContentView1Button.color = "#008000"; + displayContentView1 = "none"; + } + } + + private string displayContentView2 = "none"; + private void HideOrDisplayContentView2() + { + if (displayContentView2.Equals("none")) + { + displayContentView2Button.text = "hide"; + displayContentView2Button.color = "#be1e37"; + displayContentView2 = "content"; + } + else + { + displayContentView2Button.text = "display"; + displayContentView2Button.color = "#008000"; + displayContentView2 = "none"; + } + } + private string displayContentView3 = "none"; + private void HideOrDisplayContentView3() + { + if (displayContentView3.Equals("none")) + { + displayContentView3Button.text = "hide"; + displayContentView3Button.color = "#be1e37"; + displayContentView3 = "content"; + } + else + { + displayContentView3Button.text = "display"; + displayContentView3Button.color = "#008000"; + displayContentView3 = "none"; + } + } } } diff --git a/OSL-Server/Pages/InGamePage.razor.css b/OSL-Server/Pages/InGame/InGamePage.razor.css similarity index 97% rename from OSL-Server/Pages/InGamePage.razor.css rename to OSL-Server/Pages/InGame/InGamePage.razor.css index db88710..8c4edb5 100644 --- a/OSL-Server/Pages/InGamePage.razor.css +++ b/OSL-Server/Pages/InGame/InGamePage.razor.css @@ -14,6 +14,10 @@ html, body { color: white; } +.parent { + overflow: hidden +} + .title { font-family: MyFont; font-weight: bold; diff --git a/OSL-Server/Pages/InGameView1Page.razor b/OSL-Server/Pages/InGame/InGameView1Page.razor similarity index 100% rename from OSL-Server/Pages/InGameView1Page.razor rename to OSL-Server/Pages/InGame/InGameView1Page.razor diff --git a/OSL-Server/Pages/InGameView1Page.razor.cs b/OSL-Server/Pages/InGame/InGameView1Page.razor.cs similarity index 99% rename from OSL-Server/Pages/InGameView1Page.razor.cs rename to OSL-Server/Pages/InGame/InGameView1Page.razor.cs index 0927bed..b3ab886 100644 --- a/OSL-Server/Pages/InGameView1Page.razor.cs +++ b/OSL-Server/Pages/InGame/InGameView1Page.razor.cs @@ -1,6 +1,6 @@ using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.InGame { public partial class InGameView1Page { diff --git a/OSL-Server/Pages/InGameView1Page.razor.css b/OSL-Server/Pages/InGame/InGameView1Page.razor.css similarity index 100% rename from OSL-Server/Pages/InGameView1Page.razor.css rename to OSL-Server/Pages/InGame/InGameView1Page.razor.css diff --git a/OSL-Server/Pages/InGameView2Page.razor b/OSL-Server/Pages/InGame/InGameView2Page.razor similarity index 100% rename from OSL-Server/Pages/InGameView2Page.razor rename to OSL-Server/Pages/InGame/InGameView2Page.razor diff --git a/OSL-Server/Pages/InGameView2Page.razor.cs b/OSL-Server/Pages/InGame/InGameView2Page.razor.cs similarity index 98% rename from OSL-Server/Pages/InGameView2Page.razor.cs rename to OSL-Server/Pages/InGame/InGameView2Page.razor.cs index ffc607a..97343af 100644 --- a/OSL-Server/Pages/InGameView2Page.razor.cs +++ b/OSL-Server/Pages/InGame/InGameView2Page.razor.cs @@ -1,6 +1,6 @@ using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.InGame { public partial class InGameView2Page { diff --git a/OSL-Server/Pages/InGameView2Page.razor.css b/OSL-Server/Pages/InGame/InGameView2Page.razor.css similarity index 100% rename from OSL-Server/Pages/InGameView2Page.razor.css rename to OSL-Server/Pages/InGame/InGameView2Page.razor.css diff --git a/OSL-Server/Pages/InGameView3Page.razor b/OSL-Server/Pages/InGame/InGameView3Page.razor similarity index 100% rename from OSL-Server/Pages/InGameView3Page.razor rename to OSL-Server/Pages/InGame/InGameView3Page.razor diff --git a/OSL-Server/Pages/InGameView3Page.razor.cs b/OSL-Server/Pages/InGame/InGameView3Page.razor.cs similarity index 97% rename from OSL-Server/Pages/InGameView3Page.razor.cs rename to OSL-Server/Pages/InGame/InGameView3Page.razor.cs index 7d3419c..1fd234f 100644 --- a/OSL-Server/Pages/InGameView3Page.razor.cs +++ b/OSL-Server/Pages/InGame/InGameView3Page.razor.cs @@ -1,6 +1,6 @@ using OSL_Server.Configuration; -namespace OSL_Server.Pages +namespace OSL_Server.Pages.InGame { public partial class InGameView3Page { diff --git a/OSL-Server/Pages/InGameView3Page.razor.css b/OSL-Server/Pages/InGame/InGameView3Page.razor.css similarity index 100% rename from OSL-Server/Pages/InGameView3Page.razor.css rename to OSL-Server/Pages/InGame/InGameView3Page.razor.css diff --git a/OSL-Server/Pages/InGamePage.razor b/OSL-Server/Pages/InGamePage.razor deleted file mode 100644 index 7cd91ac..0000000 --- a/OSL-Server/Pages/InGamePage.razor +++ /dev/null @@ -1,305 +0,0 @@ -@page "/ingame" -@using MudBlazor - -In Game -
-
-
-

In Game :

-
-

With riot overlay

-

- Use of the riot overlay with added information: -
- Team, dragon and baron frame -
- Name of the teams and their number of victory -
- Frame for video/logo/... -

- @*View1*@ -
-

In Game Overlay 1

- Link Overlay 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Color Blue Team Text @InGameView1Page.formatingData.ColorBlueTeamText -
Color Blue Team Score Text @InGameView1Page.formatingData.ColorBlueTeamScoreText -
Color Red Team Text @InGameView1Page.formatingData.ColorRedTeamText -
Color Red Team Score Text @InGameView1Page.formatingData.ColorRedTeamScoreText - - -
-
- - - -
-
-
- - @*View2*@ -
-

In Game Overlay 2

- Link Overlay 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Color Blue Team Text @InGameView2Page.formatingData.ColorBlueTeamText -
Color Blue Team Score Text @InGameView2Page.formatingData.ColorBlueTeamScoreText -
Color Red Team Text @InGameView2Page.formatingData.ColorRedTeamText -
Color Red Team Score Text @InGameView2Page.formatingData.ColorRedTeamScoreText - - -
-
- - - -
-
-
- - @*View3*@ -
-

In Game Overlay 3

- Link Overlay 3 - - - - - - - - -
Color Replay Info Text @InGameView3Page.formatingData.ColorReplayInfoText - - - - - - - - - - - - - - -
-
- - - -
-
-
- -

-

Without riot overlay

-

- Disable riot overlay to add more information -
- Team, dragon and baron frame -
- Name of the teams and their number of victory -
- Frame for video/logo/... -
- Custom display dragon, herald, baron, herald, level up, itemps buy, kill, tower, timer, gold -

- In progress -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - - - - -@code { - public static TextValueOverlayView1 textValueOverlayView1 = new(); - public static TextValueOverlayView2 textValueOverlayView2 = new(); - public static TextValueOverlayView3 textValueOverlayView3 = new(); - - public bool DisableToolbar { get; set; } = true; - public bool DisableAlpha { get; set; } - public bool DisableColorField { get; set; } - public bool DisablePreview { get; set; } - public bool DisableSliders { get; set; } - public bool DisableInputs { get; set; } - public bool DisableModeSwitch { get; set; } - - public ColorPickerMode ColorPickerMode { get; set; } -} diff --git a/OSL-Server/Pages/Index.razor b/OSL-Server/Pages/Index.razor index a385ccf..0b86676 100644 --- a/OSL-Server/Pages/Index.razor +++ b/OSL-Server/Pages/Index.razor @@ -51,6 +51,22 @@
http://@Config.oslServerHostName:@Config.oslServerHttpPort/ingame/view3

+

End Game :

+ http://@Config.oslServerHostName:@Config.oslServerHttpPort/endgame/view1 +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/endgame/view2 +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/endgame/view3 +
+
+

Runes :

+ http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/adc +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/adcsupp +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/jungle +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/mid +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/top +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/supp +
http://@Config.oslServerHostName:@Config.oslServerHttpPort/runes/all +
+

diff --git a/OSL-Server/Pages/Runes/RunesAdcPage.razor b/OSL-Server/Pages/Runes/RunesAdcPage.razor new file mode 100644 index 0000000..2484143 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAdcPage.razor @@ -0,0 +1,117 @@ +@page "/runes/adc" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay Adc + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ @*Lane picture*@ +
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + if (participants.TeamId == 100) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } +
+ @foreach (int perks in participants.Perks.perkIds) + { + @*Display perks*@ +
+ +
+ } +
+ if (participants.TeamId == 100) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + } +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesAdcPage.razor.cs b/OSL-Server/Pages/Runes/RunesAdcPage.razor.cs new file mode 100644 index 0000000..d755c8b --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAdcPage.razor.cs @@ -0,0 +1,68 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesAdcPage + { + private static OSLLogger _logger = new OSLLogger("RunesAdcPage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string BackgroudGradientDeg { get; set; } + public string BackgroudGradientColor1 { get; set; } + public string BackgroudGradientPercent1 { get; set; } + public string BackgroudGradientColor2 { get; set; } + public string BackgroudGradientPercent2 { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner{ get; set; } + public string RedSideColorTextSummoner{ get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar{ get; set; } + public string RedSideColorSeparationBar{ get; set; } + public string BakgroundPicture{ get; set; } + public string LanePicture{ get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesAdcPage(); + } + + } +} diff --git a/OSL-Server/Pages/Runes/RunesAdcPage.razor.css b/OSL-Server/Pages/Runes/RunesAdcPage.razor.css new file mode 100644 index 0000000..4b9e983 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAdcPage.razor.css @@ -0,0 +1,328 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; + /*background-color: red;*/ +} + + .perks-background .perks-background-img { + /*background-color: red;*/ + position: absolute; + left: 592px; + top: 845px; + height: 235px; + /*display: none;*/ + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 609px; + width: 717px; + height: 220px; + position: absolute; + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + } + + .perks-background .perks-background-color { + /*top: 854px;*/ + /*left: 609px;*/ + width: 717px; + height: 220px; + /*position: absolute;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + } + + +.separation-bar:nth-child(6) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 637px; +} + +.separation-bar:nth-child(10) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 1097px; +} + +.lane-picture { + position: absolute; +} + + .lane-picture .lane-picture-img { + position: absolute; + top: 860px; + left: 940px; + height: 50px; + } + + +.perks { + /*background: url(./assets/runes/background.png);*/ + /* background-size: 1920px;*/ + height: 1080px; + width: 1920px; +} + +.summoner-name { + position: absolute; +} + + .summoner-name:nth-child(3) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + right: 1000px; + position: absolute; + letter-spacing: -2px; + /*color: #0b849e;*/ + /*display: none*/ + } + + .summoner-name:nth-child(7) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + left: 1010px; + position: absolute; + letter-spacing: -2px; + /*color: #be1e37;*/ + } + +.champ-picture { + position: absolute; +} + + .champ-picture:nth-child(4) .champ-picture-img { + height: 105px; + top: 930px; + left: 853px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + .champ-picture:nth-child(8) .champ-picture-img { + height: 105px; + top: 930px; + left: 977px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + +.perks-list { + position: absolute; + display: flex; +} + + .perks-list:nth-child(5) { + /*top: 100px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) { + top: 905px; + left: 775px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) { + top: 930px; + left: 737.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) { + top: 930px; + left: 697.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) { + top: 930px; + left: 657.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) { + top: 990px; + left: 801.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) { + top: 990px; + left: 761.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) { + top: 995px; + left: 701.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) { + top: 995px; + left: 671.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) { + top: 995px; + left: 641.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) { + /*top: 100px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) { + top: 905px; + left: 1085px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) { + top: 930px; + left: 1156.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) { + top: 930px; + left: 1196.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) { + top: 930px; + left: 1236.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) { + top: 990px; + left: 1092.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) { + top: 990px; + left: 1132.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) { + top: 995px; + left: 1202.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) { + top: 995px; + left: 1232.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) { + top: 995px; + left: 1262.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } diff --git a/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor b/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor new file mode 100644 index 0000000..1df8f4d --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor @@ -0,0 +1,199 @@ +@page "/runes/adcsupp" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay Adc adn Supp + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ @*Lane picture*@ +
+ +
+
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0 || participants.Lane.CompareTo(RunesPage.Lanes.Support) == 0) + { + if (participants.TeamId == 100) + { + if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + } + else + { + if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + } + +
+ @foreach (int perks in participants.Perks.perkIds) + { + if (participants.TeamId == 100) + { + if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + @*Display perks*@ +
+ +
+ } + else + { + @*Display perks*@ +
+ +
+ } + } + else + { + if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + @*Display perks*@ +
+ +
+ } + else + { + @*Display perks*@ +
+ +
+ } + } + } +
+ if (participants.TeamId == 100) + { + if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + else + { + if (participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + } + } +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor.cs b/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor.cs new file mode 100644 index 0000000..1f22894 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor.cs @@ -0,0 +1,64 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesAdcSuppPage + { + private static OSLLogger _logger = new OSLLogger("RunesAdcPage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner{ get; set; } + public string RedSideColorTextSummoner{ get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar{ get; set; } + public string RedSideColorSeparationBar{ get; set; } + public string BakgroundPicture{ get; set; } + public string LanePictureAdc{ get; set; } + public string LanePictureSupp{ get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesAdcSuppPage(); + } + + } +} diff --git a/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor.css b/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor.css new file mode 100644 index 0000000..26d82c6 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAdcSuppPage.razor.css @@ -0,0 +1,493 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; + /*background-color: red;*/ +} + + .perks-background .perks-background-img { + /*background-color: red;*/ + position: absolute; + left: 592px; + top: 845px; + height: 235px; + /*display: none;*/ + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 609px; + width: 717px; + height: 220px; + position: absolute; + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + } + + .perks-background .perks-background-color { + /*top: 854px;*/ + /*left: 609px;*/ + width: 717px; + height: 220px; + /*position: absolute;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + } + + +.separation-bar-adc-blue { + position: absolute; + height: 2px; + width: 200px; + background-color: #c99d53; + top: 919px; + left: 637px; +} + +.separation-bar-supp-blue { + position: absolute; + height: 2px; + width: 200px; + background-color: #c99d53; + top: 1027px; + left: 637px; +} + +.separation-bar-adc-red { + position: absolute; + height: 2px; + width: 200px; + background-color: #c99d53; + top: 919px; + left: 1097px; +} + +.separation-bar-supp-red { + position: absolute; + height: 2px; + width: 200px; + background-color: #c99d53; + top: 1027px; + left: 1097px; +} + +.lane-picture-adc { + position: absolute; +} + + .lane-picture-adc .lane-picture-img { + position: absolute; + top: 853px; + left: 950px; + height: 33px; + } + +.lane-picture-supp { + position: absolute; +} + + .lane-picture-supp .lane-picture-img { + position: absolute; + top: 960px; + left: 950px; + height: 33px; + } + + +.perks { + /*background: url(./assets/runes/backgroundV2.png);*/ + /* background-size: 1920px;*/ + height: 1080px; + width: 1920px; +} + +.summoner-name-adc-blue { + position: absolute; + font-family: EurostileCondensedBold; + font-size: 20px; + top: 852px; + right: 970px; + position: absolute; + letter-spacing: -1px; +} + +.champ-picture-adc-blue { + position: absolute; +} + + .champ-picture-adc-blue .champ-picture-adc-img { + position: absolute; + height: 79px; + top: 882px; + left: 868px; + border: 2px solid #c99d53; + } + +.summoner-name-supp-blue { + position: absolute; + font-family: EurostileCondensedBold; + font-size: 20px; + top: 960px; + right: 970px; + position: absolute; + letter-spacing: -1px; +} + +.champ-picture-supp-blue { + position: absolute; +} + + .champ-picture-supp-blue .champ-picture-supp-img { + position: absolute; + height: 79px; + top: 990px; + left: 868px; + border: 2px solid #c99d53; + } + +.summoner-name-adc-red { + position: absolute; + font-family: EurostileCondensedBold; + font-size: 20px; + top: 852px; + left: 995px; + position: absolute; + letter-spacing: -1px; +} + +.champ-picture-adc-red { + position: absolute; +} + + .champ-picture-adc-red .champ-picture-adc-img { + position: absolute; + height: 79px; + top: 882px; + left: 987px; + border: 2px solid #c99d53; + } + +.summoner-name-supp-red { + position: absolute; + font-family: EurostileCondensedBold; + font-size: 20px; + top: 960px; + left: 995px; + position: absolute; + letter-spacing: -1px; +} + +.champ-picture-supp-red { + position: absolute; +} + + .champ-picture-supp-red .champ-picture-supp-img { + position: absolute; + height: 79px; + top: 990px; + left: 987px; + border: 2px solid #c99d53; + } + + +.perks-wrapper-adc-blue { + position: absolute; +} + + .perks-wrapper-adc-blue .perks-img-adc-blue { + position: absolute; + } + + .perks-wrapper-adc-blue:nth-child(1) .perks-img-adc-blue { + position: absolute; + height: 60px; + top: 865px; + left: 790px; + } + + .perks-wrapper-adc-blue:nth-child(2) .perks-img-adc-blue { + position: absolute; + height: 33px; + top: 880px; + left: 745px; + } + + .perks-wrapper-adc-blue:nth-child(3) .perks-img-adc-blue { + position: absolute; + height: 33px; + top: 880px; + left: 705px; + } + + .perks-wrapper-adc-blue:nth-child(4) .perks-img-adc-blue { + position: absolute; + height: 33px; + top: 880px; + left: 665px; + } + + .perks-wrapper-adc-blue:nth-child(5) .perks-img-adc-blue { + position: absolute; + height: 33px; + top: 925px; + left: 810px; + } + + .perks-wrapper-adc-blue:nth-child(6) .perks-img-adc-blue { + position: absolute; + height: 33px; + top: 925px; + left: 770px; + } + + .perks-wrapper-adc-blue:nth-child(7) .perks-img-adc-blue { + position: absolute; + /*height: 33px;*/ + top: 926px; + left: 701px; + } + + .perks-wrapper-adc-blue:nth-child(8) .perks-img-adc-blue { + position: absolute; + /*height: 33px;*/ + top: 926px; + left: 671px; + } + + .perks-wrapper-adc-blue:nth-child(9) .perks-img-adc-blue { + position: absolute; + /*height: 33px;*/ + top: 926px; + left: 641px; + } + +.perks-wrapper-supp-blue { + position: absolute; +} + + .perks-wrapper-supp-blue .perks-img-supp-blue { + position: absolute; + } + + .perks-wrapper-supp-blue:nth-child(1) .perks-img-supp-blue { + position: absolute; + height: 60px; + top: 975px; + left: 790px; + } + + .perks-wrapper-supp-blue:nth-child(2) .perks-img-supp-blue { + position: absolute; + height: 33px; + top: 990px; + left: 745px; + } + + .perks-wrapper-supp-blue:nth-child(3) .perks-img-supp-blue { + position: absolute; + height: 33px; + top: 990px; + left: 705px; + } + + .perks-wrapper-supp-blue:nth-child(4) .perks-img-supp-blue { + position: absolute; + height: 33px; + top: 990px; + left: 665px; + } + + .perks-wrapper-supp-blue:nth-child(5) .perks-img-supp-blue { + position: absolute; + height: 33px; + top: 1035px; + left: 810px; + } + + .perks-wrapper-supp-blue:nth-child(6) .perks-img-supp-blue { + position: absolute; + height: 33px; + top: 1035px; + left: 770px; + } + + .perks-wrapper-supp-blue:nth-child(7) .perks-img-supp-blue { + position: absolute; + /*height: 33px;*/ + top: 1036px; + left: 701px; + } + + .perks-wrapper-supp-blue:nth-child(8) .perks-img-supp-blue { + position: absolute; + /*height: 33px;*/ + top: 1036px; + left: 671px; + } + + .perks-wrapper-supp-blue:nth-child(9) .perks-img-supp-blue { + position: absolute; + /*height: 33px;*/ + top: 1036px; + left: 641px; + } + + + +.perks-wrapper-adc-red { + position: absolute; +} + + .perks-wrapper-adc-red .perks-img-adc-red { + position: absolute; + } + + .perks-wrapper-adc-red:nth-child(1) .perks-img-adc-red { + position: absolute; + height: 60px; + top: 865px; + left: 1080px; + } + + .perks-wrapper-adc-red:nth-child(2) .perks-img-adc-red { + position: absolute; + height: 33px; + top: 880px; + left: 1155px; + } + + .perks-wrapper-adc-red:nth-child(3) .perks-img-adc-red { + position: absolute; + height: 33px; + top: 880px; + left: 1195px; + } + + .perks-wrapper-adc-red:nth-child(4) .perks-img-adc-red { + position: absolute; + height: 33px; + top: 880px; + left: 1235px; + } + + .perks-wrapper-adc-red:nth-child(5) .perks-img-adc-red { + position: absolute; + height: 33px; + top: 925px; + left: 1090px; + } + + .perks-wrapper-adc-red:nth-child(6) .perks-img-adc-red { + position: absolute; + height: 33px; + top: 925px; + left: 1130px; + } + + .perks-wrapper-adc-red:nth-child(7) .perks-img-adc-red { + position: absolute; + /*height: 33px;*/ + top: 926px; + left: 1200px; + } + + .perks-wrapper-adc-red:nth-child(8) .perks-img-adc-red { + position: absolute; + /*height: 33px;*/ + top: 926px; + left: 1230px; + } + + .perks-wrapper-adc-red:nth-child(9) .perks-img-adc-red { + position: absolute; + /*height: 33px;*/ + top: 926px; + left: 1260px; + } + +.perks-wrapper-supp-red { + position: absolute; +} + + .perks-wrapper-supp-red .perks-img-supp-red { + position: absolute; + } + + .perks-wrapper-supp-red:nth-child(1) .perks-img-supp-red { + position: absolute; + height: 60px; + top: 975px; + left: 1080px; + } + + .perks-wrapper-supp-red:nth-child(2) .perks-img-supp-red { + position: absolute; + height: 33px; + top: 990px; + left: 1155px; + } + + .perks-wrapper-supp-red:nth-child(3) .perks-img-supp-red { + position: absolute; + height: 33px; + top: 990px; + left: 1195px; + } + + .perks-wrapper-supp-red:nth-child(4) .perks-img-supp-red { + position: absolute; + height: 33px; + top: 990px; + left: 1235px; + } + + .perks-wrapper-supp-red:nth-child(5) .perks-img-supp-red { + position: absolute; + height: 33px; + top: 1035px; + left: 1090px; + } + + .perks-wrapper-supp-red:nth-child(6) .perks-img-supp-red { + position: absolute; + height: 33px; + top: 1035px; + left: 1130px; + } + + .perks-wrapper-supp-red:nth-child(7) .perks-img-supp-red { + position: absolute; + /*height: 33px;*/ + top: 1036px; + left: 1200px; + } + + .perks-wrapper-supp-red:nth-child(8) .perks-img-supp-red { + position: absolute; + /*height: 33px;*/ + top: 1036px; + left: 1230px; + } + + .perks-wrapper-supp-red:nth-child(9) .perks-img-supp-red { + position: absolute; + /*height: 33px;*/ + top: 1036px; + left: 1260px; + } \ No newline at end of file diff --git a/OSL-Server/Pages/Runes/RunesAllPage.razor b/OSL-Server/Pages/Runes/RunesAllPage.razor new file mode 100644 index 0000000..6abf571 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAllPage.razor @@ -0,0 +1,261 @@ +@page "/runes/all" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay All + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.TeamId == 100 && participants.Lane.CompareTo(RunesPage.Lanes.Top) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 100 && participants.Lane.CompareTo(RunesPage.Lanes.Jungle) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 100 && participants.Lane.CompareTo(RunesPage.Lanes.Mid) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 100 && participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 100 && participants.Lane.CompareTo(RunesPage.Lanes.Support) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 200 && participants.Lane.CompareTo(RunesPage.Lanes.Top) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 200 && participants.Lane.CompareTo(RunesPage.Lanes.Jungle) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 200 && participants.Lane.CompareTo(RunesPage.Lanes.Mid) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 200 && participants.Lane.CompareTo(RunesPage.Lanes.ADC) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + else if (participants.TeamId == 200 && participants.Lane.CompareTo(RunesPage.Lanes.Support) == 0) + { +
+
+ +
+ @*Display champ picture *@ +
+ +
+ @*Display perks*@ +
+ +
+
+ +
+
+ } + } + +
+
+
+
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesAllPage.razor.cs b/OSL-Server/Pages/Runes/RunesAllPage.razor.cs new file mode 100644 index 0000000..aa7ed9f --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAllPage.razor.cs @@ -0,0 +1,71 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesAllPage + { + private static OSLLogger _logger = new OSLLogger("RunesAllPage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string BackgroudGradientDeg { get; set; } + public string BackgroudGradientColor1 { get; set; } + public string BackgroudGradientPercent1 { get; set; } + public string BackgroudGradientColor2 { get; set; } + public string BackgroudGradientPercent2 { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner { get; set; } + public string RedSideColorTextSummoner { get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar { get; set; } + public string RedSideColorSeparationBar { get; set; } + public string BakgroundPicture { get; set; } + public string LanePictureAdc { get; set; } + public string LanePictureSupp { get; set; } + public string LanePictureTop { get; set; } + public string LanePictureMid { get; set; } + public string LanePictureJungle { get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesAllPage(); + } + } +} diff --git a/OSL-Server/Pages/Runes/RunesAllPage.razor.css b/OSL-Server/Pages/Runes/RunesAllPage.razor.css new file mode 100644 index 0000000..5cc5b0d --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesAllPage.razor.css @@ -0,0 +1,186 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; +} + + .perks-background .perks-background-img { + position: absolute; + left: 292px; + top: 845px; + height: 235px; + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 309px; + width: 1335px; + height: 220px; + position: absolute; + } + + .perks-background .perks-background-color { + width: 1335px; + height: 220px; + } + +.perks { + /*background: url(./assets/runes/background.png);*/ + height: 1080px; + width: 1920px; +} + +.separation-bar { + position: absolute; + height: 200px; + width: 2px; + background-color: #c99d53; + top: 865px; + left: 980px; +} + +.lane-picture-img { + height: 30px; + margin-bottom: 5px; +} + +.champ-picture-img { + height: 60px; + margin-bottom: 5px; +} + +.perks-img { + margin-bottom: 5px; + height: 60px; +} + +.perks-sub-img { + height: 32px; + margin-bottom: 5px; +} + +.perks-blue-top { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 370px; +} + +.perks-blue-jungle { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 490px; +} + +.perks-blue-mid { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 610px; +} + +.perks-blue-adc { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 730px; +} + +.perks-blue-supp { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 860px; +} + +.perks-red-top { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 1525px; +} + +.perks-red-jungle { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 1405px; +} + +.perks-red-mid { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 1285px; +} + +.perks-red-adc { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 1165px; +} + +.perks-red-supp { + position: absolute; + display: inline-block; + align-content: center; + justify-content: center; + align-items: center; + text-align: center; + top: 865px; + left: 1045px; +} diff --git a/OSL-Server/Pages/Runes/RunesJunglePage.razor b/OSL-Server/Pages/Runes/RunesJunglePage.razor new file mode 100644 index 0000000..217d5fb --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesJunglePage.razor @@ -0,0 +1,117 @@ +@page "/runes/jungle" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay Jungle + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ @*Lane picture*@ +
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.Lane.CompareTo(RunesPage.Lanes.Jungle) == 0) + { + if (participants.TeamId == 100) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } +
+ @foreach (int perks in participants.Perks.perkIds) + { + @*Display perks*@ +
+ +
+ } +
+ if (participants.TeamId == 100) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + } +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesJunglePage.razor.cs b/OSL-Server/Pages/Runes/RunesJunglePage.razor.cs new file mode 100644 index 0000000..2ff23b6 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesJunglePage.razor.cs @@ -0,0 +1,63 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesJunglePage + { + private static OSLLogger _logger = new OSLLogger("RunesJunglePage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner{ get; set; } + public string RedSideColorTextSummoner{ get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar{ get; set; } + public string RedSideColorSeparationBar{ get; set; } + public string BakgroundPicture{ get; set; } + public string LanePicture{ get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesJunglePage(); + } + + } +} diff --git a/OSL-Server/Pages/Runes/RunesJunglePage.razor.css b/OSL-Server/Pages/Runes/RunesJunglePage.razor.css new file mode 100644 index 0000000..4b9e983 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesJunglePage.razor.css @@ -0,0 +1,328 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; + /*background-color: red;*/ +} + + .perks-background .perks-background-img { + /*background-color: red;*/ + position: absolute; + left: 592px; + top: 845px; + height: 235px; + /*display: none;*/ + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 609px; + width: 717px; + height: 220px; + position: absolute; + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + } + + .perks-background .perks-background-color { + /*top: 854px;*/ + /*left: 609px;*/ + width: 717px; + height: 220px; + /*position: absolute;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + } + + +.separation-bar:nth-child(6) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 637px; +} + +.separation-bar:nth-child(10) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 1097px; +} + +.lane-picture { + position: absolute; +} + + .lane-picture .lane-picture-img { + position: absolute; + top: 860px; + left: 940px; + height: 50px; + } + + +.perks { + /*background: url(./assets/runes/background.png);*/ + /* background-size: 1920px;*/ + height: 1080px; + width: 1920px; +} + +.summoner-name { + position: absolute; +} + + .summoner-name:nth-child(3) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + right: 1000px; + position: absolute; + letter-spacing: -2px; + /*color: #0b849e;*/ + /*display: none*/ + } + + .summoner-name:nth-child(7) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + left: 1010px; + position: absolute; + letter-spacing: -2px; + /*color: #be1e37;*/ + } + +.champ-picture { + position: absolute; +} + + .champ-picture:nth-child(4) .champ-picture-img { + height: 105px; + top: 930px; + left: 853px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + .champ-picture:nth-child(8) .champ-picture-img { + height: 105px; + top: 930px; + left: 977px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + +.perks-list { + position: absolute; + display: flex; +} + + .perks-list:nth-child(5) { + /*top: 100px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) { + top: 905px; + left: 775px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) { + top: 930px; + left: 737.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) { + top: 930px; + left: 697.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) { + top: 930px; + left: 657.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) { + top: 990px; + left: 801.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) { + top: 990px; + left: 761.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) { + top: 995px; + left: 701.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) { + top: 995px; + left: 671.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) { + top: 995px; + left: 641.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) { + /*top: 100px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) { + top: 905px; + left: 1085px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) { + top: 930px; + left: 1156.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) { + top: 930px; + left: 1196.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) { + top: 930px; + left: 1236.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) { + top: 990px; + left: 1092.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) { + top: 990px; + left: 1132.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) { + top: 995px; + left: 1202.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) { + top: 995px; + left: 1232.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) { + top: 995px; + left: 1262.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } diff --git a/OSL-Server/Pages/Runes/RunesMidPage.razor b/OSL-Server/Pages/Runes/RunesMidPage.razor new file mode 100644 index 0000000..115dd3b --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesMidPage.razor @@ -0,0 +1,117 @@ +@page "/runes/mid" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay Mid + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ @*Lane picture*@ +
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.Lane.CompareTo(RunesPage.Lanes.Mid) == 0) + { + if (participants.TeamId == 100) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } +
+ @foreach (int perks in participants.Perks.perkIds) + { + @*Display perks*@ +
+ +
+ } +
+ if (participants.TeamId == 100) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + } +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesMidPage.razor.cs b/OSL-Server/Pages/Runes/RunesMidPage.razor.cs new file mode 100644 index 0000000..469cef3 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesMidPage.razor.cs @@ -0,0 +1,62 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesMidPage + { + private static OSLLogger _logger = new OSLLogger("RunesMidPage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner{ get; set; } + public string RedSideColorTextSummoner{ get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar{ get; set; } + public string RedSideColorSeparationBar{ get; set; } + public string BakgroundPicture{ get; set; } + public string LanePicture{ get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesMidPage(); + } + } +} diff --git a/OSL-Server/Pages/Runes/RunesMidPage.razor.css b/OSL-Server/Pages/Runes/RunesMidPage.razor.css new file mode 100644 index 0000000..4b9e983 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesMidPage.razor.css @@ -0,0 +1,328 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; + /*background-color: red;*/ +} + + .perks-background .perks-background-img { + /*background-color: red;*/ + position: absolute; + left: 592px; + top: 845px; + height: 235px; + /*display: none;*/ + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 609px; + width: 717px; + height: 220px; + position: absolute; + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + } + + .perks-background .perks-background-color { + /*top: 854px;*/ + /*left: 609px;*/ + width: 717px; + height: 220px; + /*position: absolute;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + } + + +.separation-bar:nth-child(6) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 637px; +} + +.separation-bar:nth-child(10) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 1097px; +} + +.lane-picture { + position: absolute; +} + + .lane-picture .lane-picture-img { + position: absolute; + top: 860px; + left: 940px; + height: 50px; + } + + +.perks { + /*background: url(./assets/runes/background.png);*/ + /* background-size: 1920px;*/ + height: 1080px; + width: 1920px; +} + +.summoner-name { + position: absolute; +} + + .summoner-name:nth-child(3) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + right: 1000px; + position: absolute; + letter-spacing: -2px; + /*color: #0b849e;*/ + /*display: none*/ + } + + .summoner-name:nth-child(7) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + left: 1010px; + position: absolute; + letter-spacing: -2px; + /*color: #be1e37;*/ + } + +.champ-picture { + position: absolute; +} + + .champ-picture:nth-child(4) .champ-picture-img { + height: 105px; + top: 930px; + left: 853px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + .champ-picture:nth-child(8) .champ-picture-img { + height: 105px; + top: 930px; + left: 977px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + +.perks-list { + position: absolute; + display: flex; +} + + .perks-list:nth-child(5) { + /*top: 100px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) { + top: 905px; + left: 775px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) { + top: 930px; + left: 737.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) { + top: 930px; + left: 697.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) { + top: 930px; + left: 657.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) { + top: 990px; + left: 801.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) { + top: 990px; + left: 761.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) { + top: 995px; + left: 701.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) { + top: 995px; + left: 671.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) { + top: 995px; + left: 641.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) { + /*top: 100px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) { + top: 905px; + left: 1085px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) { + top: 930px; + left: 1156.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) { + top: 930px; + left: 1196.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) { + top: 930px; + left: 1236.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) { + top: 990px; + left: 1092.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) { + top: 990px; + left: 1132.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) { + top: 995px; + left: 1202.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) { + top: 995px; + left: 1232.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) { + top: 995px; + left: 1262.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } diff --git a/OSL-Server/Pages/Runes/RunesPage.razor b/OSL-Server/Pages/Runes/RunesPage.razor new file mode 100644 index 0000000..d5a6ea6 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesPage.razor @@ -0,0 +1,192 @@ +@page "/runes" +@using MudBlazor +@using OSL_Server.DataLoader.CDragon; +@*@using CDragondataCDragon*@ + + +Runes +
+
+
+

Runes

+ Champions are automatically placed on the lanes +
Choose champion lanes for display runes lane vs lane +
+
+ Link Runes Top + Link Runes Mid + Link Runes Jungle + Link Runes Adc + Link Runes Support + Link Runes Adc and Support + Link Runes All +
+
+ + @if (summonerPerksList.Count() != 0) + { +
+

Info! Rune information available

+
+
+
+
+ @foreach (var summoner in summonerPerksList.Select((info, index) => (info, index))) + { + @if (summoner.info.TeamId == 100) + { +
+
+ @summonerPerksList[summoner.index].SummonerName +
+
+ +
+
+ + + @foreach (Lanes lane in Enum.GetValues(typeof(Lanes))) + { + + } + + +
+
+ summonerPerksList[summoner.index].Lane = summonerPerksList[summoner.index].Lane; + } + } +
+ +
+ @foreach (var summoner in summonerPerksList.Select((info, index) => (info, index))) + { + @if (summoner.info.TeamId == 200) + { +
+
+ @summonerPerksList[summoner.index].SummonerName +
+
+ +
+
+ + + @foreach (Lanes lane in Enum.GetValues(typeof(Lanes))) + { + + } + + +
+
+ summonerPerksList[summoner.index].Lane = summonerPerksList[summoner.index].Lane; + } + } +
+
+ } + else + { +
+

Info! Not rune information found

+
+ } +
+
+ + +
+
+
+ + + + + + + + + + + + +
+ deg + @RunesAdcPage.formatingData.BackgroudGradientColor1 + + % + @RunesAdcPage.formatingData.BackgroudGradientColor2 + + % + +
+ +
Blue Side Color Text Summoner @RunesAdcPage.formatingData.BlueSideColorTextSummoner +
Blue Side Color Separation Bar @RunesAdcPage.formatingData.BlueSideColorSeparationBar + + + + + + + + +
Red Side Color Text Summoner @RunesAdcPage.formatingData.RedSideColorTextSummoner +
Red Side Color Separation Bar @RunesAdcPage.formatingData.RedSideColorSeparationBar + + + + + + + + +
+
+ +
+
+
+ + + +
+
+
+
+
+
+ + + + + + +@code { + public static LaneInfo laneSelectionSummoner1 = new(); + public static LaneInfo laneSelectionSummoner2 = new(); + + public static Overlay overlay = new(); + + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesPage.razor.cs b/OSL-Server/Pages/Runes/RunesPage.razor.cs new file mode 100644 index 0000000..b3bf929 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesPage.razor.cs @@ -0,0 +1,498 @@ +using Newtonsoft.Json; +using OSL_Server.DataLoader.WebApiRiot; +using OSL_Server.DataReciveClient.Processing.ChampSelect; +using OSL_Server.FileManager; +using OSL_Server.Pages.ChampSelect; +using System.ComponentModel.DataAnnotations; +using System.Reflection; +using static OSL_Server.Pages.ChampSelect.ChampSelectPage; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesPage + { + private static OSLLogger _logger = new OSLLogger("RunesPage"); + + public static string colorPicker = "hidden"; + public static string colorValue = "#0000"; + + public static List summonerPerksList = new(); + + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + } + + public static void CreateSummonerPerksListV2(string content) + { + try + { + summonerPerksList = new(); + dynamic jsonSessionInfo = JsonConvert.DeserializeObject(content); + //Console.WriteLine(jsonSessionInfo.gameData.teamOne[0].gameCustomization.perks); + //string temps = jsonSessionInfo.gameData.teamOne[0].gameCustomization.perks; + //dynamic temps2 = JsonConvert.DeserializeObject(temps); + //Console.WriteLine(temps2.perkIds[0]); + + foreach (var player in jsonSessionInfo.gameData.teamOne) + { + summonerPerksList.Add(new InfoForPerks() + { + TeamId = 100, + Lane = GetLane(Convert.ToString(player.selectedPosition)), + ChampionId = player.championId, + SummonerName = player.summonerName, + //Perks = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(player.gameCustomization.perks)), + Perks = JsonConvert.DeserializeObject(Convert.ToString(player.gameCustomization.perks)), + }); + } + foreach (var player in jsonSessionInfo.gameData.teamTwo) + { + summonerPerksList.Add(new InfoForPerks() + { + TeamId = 200, + Lane = GetLane(Convert.ToString(player.selectedPosition)), + ChampionId = player.championId, + SummonerName = player.summonerName, + //Perks = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(player.gameCustomization.perks)), + Perks = JsonConvert.DeserializeObject(Convert.ToString(player.gameCustomization.perks)), + }); + } + + //foreach (var info in summonerPerksList) + //{ + // Console.WriteLine(info.Lane); + //} + _logger.log(LoggingLevel.INFO, "CreateSummonerPerksListV2()", $"summonerPerksList created and completed"); + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "CreateSummonerPerksListV2()", $"summonerPerksList Error {e.Message}"); + } + } + + private static Lanes GetLane(string lane) + { + //Console.WriteLine(lane); + try + { + if (lane != null) + { + if (lane.Equals("TOP")) + { + return Lanes.Top; + } + else if (lane.Equals("BOTTOM")) + { + return Lanes.ADC; + } + else if (lane.Equals("MIDDLE")) + { + return Lanes.Mid; + } + else if (lane.Equals("UTILITY")) + { + return Lanes.Support; + } + else if (lane.Equals("JUNGLE")) + { + return Lanes.Jungle; + } + } + return Lanes.None; + } + catch (Exception e) + { + return Lanes.None; + } + } + + public static void CreateSummonerPerksList(string summonerName) + { + try + { + summonerPerksList = new(); + dynamic jsonSummonerInformation = JsonConvert.DeserializeObject(WebApiRiot.RequestWebApiRiot(Summoner_V4.ByName(summonerName))); + string summonerId = jsonSummonerInformation.id; + //string contentInfoPerks = FileManagerLocal.ReadInFile("C:\\Users\\Sky\\Documents\\GitHub\\OSL\\OSL-Client\\DiversData\\perks.json"); + dynamic jsonStectatorInfo = JsonConvert.DeserializeObject(WebApiRiot.RequestWebApiRiot(Spectator_V4.BySummoner(summonerId))); + //dynamic jsonStectatorInfo = JsonConvert.DeserializeObject(contentInfoPerks); + //foreach (InfoForPerks participants in jsonStectatorInfo.participants) + foreach (var participants in jsonStectatorInfo.participants) + { + //Console.WriteLine(participants); + //Console.WriteLine(participants.perks); + //String testString = JsonConvert.SerializeObject(participants.perks); + //Console.WriteLine(testString); + //Perks test = JsonConvert.DeserializeObject(testString); + //Console.WriteLine(test.perkStyle); + summonerPerksList.Add(new InfoForPerks() + { + TeamId = participants.teamId, + Lane = Lanes.None, + ChampionId = participants.championId, + SummonerName = participants.summonerName, + Perks = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(participants.perks)), + //Perks = test, + //Perks = new Perks() + //{ + // PerkIds = participants.perks.perkIds, + // PerkStyle = participants.perks.perkStyle, + // PerkSubStyle = participants.perks.perkSubStyle + + //}, + }); + } + foreach (var info in summonerPerksList) + { + Console.WriteLine(info.SummonerName); + } + _logger.log(LoggingLevel.INFO, "CreateSummonerPerksList()", $"summonerPerksList created and completed"); + + } + catch (Exception e) + { + _logger.log(LoggingLevel.ERROR, "CreateSummonerPerksList()", $"summonerPerksList Error {e.Message}"); + } + } + + public static void ResetLanes() + { + foreach (var info in summonerPerksList) + { + info.Lane = Lanes.None; + } + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + public class InfoForPerks + { + public int TeamId { get; set; } + public Lanes Lane { get; set; } + public int ChampionId { get; set; } + public string SummonerName { get; set; } + public Perks Perks { get; set; } + } + + public class Perks + { + public List perkIds { get; set; } + public int perkStyle { get; set; } + public int perkSubStyle { get; set; } + } + + public enum Lanes + { + None, + Top, + Mid, + Jungle, + ADC, + Support + } + + public class LaneInfo + { + public Lanes lanes { get; set; } + } + + /// + /// structure of overlay view for enable or disable text and change color + /// + private struct OverlayViewDisokayOrHide + { + public string text { get; set; } + public string color { get; set; } + + public OverlayViewDisokayOrHide() + { + text = ""; + color = ""; + } + + public OverlayViewDisokayOrHide(string text, string color) + { + this.text = text; + this.color = color; + } + } + + private OverlayViewDisokayOrHide overlayButton = new("display", "#008000"); + + private string displayContent = "none"; + private void HideOrDisplayContent() + { + if (displayContent.Equals("none")) + { + overlayButton.text = "hide"; + overlayButton.color = "#be1e37"; + displayContent = "content"; + } + else + { + overlayButton.text = "display"; + overlayButton.color = "#008000"; + displayContent = "none"; + } + } + + private void ResetColor() + { + RunesAdcPage.ResetColor(); + RunesAdcSuppPage.ResetColor(); + RunesJunglePage.ResetColor(); + RunesMidPage.ResetColor(); + RunesTopPage.ResetColor(); + RunesSuppPage.ResetColor(); + RunesAllPage.ResetColor(); + } + + public class Overlay + { + public bool BackgroundPicture { get; set; } = true; + + public static void BackgroundPictureSubmit() + { + } + + [Required] + [Range(-360, 360, ErrorMessage = "Accommodation invalid (-360-360).")] + public int BackgroudGradientDeg { get; set; } = 150; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroudGradientPercent1 { get; set; } = 0; + + [Required] + [Range(0, 100, ErrorMessage = "Accommodation invalid (0-100).")] + public int BackgroudGradientPercent2 { get; set; } = 100; + public static void BackgroudGradientSubmit() + { + RunesAdcPage.formatingData.BackgroudGradientDeg = overlay.BackgroudGradientDeg.ToString(); + RunesAdcPage.formatingData.BackgroudGradientPercent1 = overlay.BackgroudGradientPercent1.ToString(); + RunesAdcPage.formatingData.BackgroudGradientPercent2 = overlay.BackgroudGradientPercent2.ToString(); + RunesAdcPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesAdcSuppPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesJunglePage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesMidPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesSuppPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesTopPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesAllPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + } + + public static void SetBackgroudGradientColor1() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + colorValue = RunesAdcPage.formatingData.BackgroudGradientColor1; + } + else + { + colorPicker = "hidden"; + RunesAdcPage.formatingData.BackgroudGradientColor1 = colorValue; + RunesAdcPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesAdcSuppPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesJunglePage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesMidPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesSuppPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesTopPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesAllPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + } + } + + public static void SetBackgroudGradientColor2() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + colorValue = RunesAdcPage.formatingData.BackgroudGradientColor2; + } + else + { + colorPicker = "hidden"; + RunesAdcPage.formatingData.BackgroudGradientColor2 = colorValue; + RunesAdcPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesAdcSuppPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesJunglePage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesMidPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesSuppPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesTopPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + RunesAllPage.formatingData.BackgroudGradient = $"linear-gradient({RunesAdcPage.formatingData.BackgroudGradientDeg}deg, {RunesAdcPage.formatingData.BackgroudGradientColor1} {RunesAdcPage.formatingData.BackgroudGradientPercent1}%, {RunesAdcPage.formatingData.BackgroudGradientColor2} {RunesAdcPage.formatingData.BackgroudGradientPercent2}%)"; + } + } + + public bool ForegroundBackground { get; set; } = true; + + public static void ForegroundBackgroundSubmit() + { + + } + + public static void SetBlueSideColorTextSummoner() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + colorValue = RunesAdcPage.formatingData.BlueSideColorTextSummoner; + } + else + { + colorPicker = "hidden"; + RunesAdcPage.formatingData.BlueSideColorTextSummoner = colorValue; + RunesAdcSuppPage.formatingData.BlueSideColorTextSummoner = colorValue; + RunesJunglePage.formatingData.BlueSideColorTextSummoner = colorValue; + RunesMidPage.formatingData.BlueSideColorTextSummoner = colorValue; + RunesSuppPage.formatingData.BlueSideColorTextSummoner = colorValue; + RunesTopPage.formatingData.BlueSideColorTextSummoner = colorValue; + RunesAllPage.formatingData.BlueSideColorTextSummoner = colorValue; + } + } + + public static void SetRedSideColorTextSummoner() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + colorValue = RunesAdcPage.formatingData.RedSideColorTextSummoner; + } + else + { + colorPicker = "hidden"; + RunesAdcPage.formatingData.RedSideColorTextSummoner = colorValue; + RunesAdcSuppPage.formatingData.RedSideColorTextSummoner = colorValue; + RunesJunglePage.formatingData.RedSideColorTextSummoner = colorValue; + RunesMidPage.formatingData.RedSideColorTextSummoner = colorValue; + RunesSuppPage.formatingData.RedSideColorTextSummoner = colorValue; + RunesTopPage.formatingData.RedSideColorTextSummoner = colorValue; + RunesAllPage.formatingData.RedSideColorTextSummoner = colorValue; + } + } + + public static void SetBlueSideColorSeparationBar() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + colorValue = RunesAdcPage.formatingData.BlueSideColorSeparationBar; + } + else + { + colorPicker = "hidden"; + RunesAdcPage.formatingData.BlueSideColorSeparationBar = colorValue; + RunesAdcSuppPage.formatingData.BlueSideColorSeparationBar = colorValue; + RunesJunglePage.formatingData.BlueSideColorSeparationBar = colorValue; + RunesMidPage.formatingData.BlueSideColorSeparationBar = colorValue; + RunesSuppPage.formatingData.BlueSideColorSeparationBar = colorValue; + RunesTopPage.formatingData.BlueSideColorSeparationBar = colorValue; + RunesAllPage.formatingData.BlueSideColorSeparationBar = colorValue; + } + } + + public static void SetRedSideColorSeparationBar() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + colorValue = RunesAdcPage.formatingData.RedSideColorSeparationBar; + } + else + { + colorPicker = "hidden"; + RunesAdcPage.formatingData.RedSideColorSeparationBar = colorValue; + RunesAdcSuppPage.formatingData.RedSideColorSeparationBar = colorValue; + RunesJunglePage.formatingData.RedSideColorSeparationBar = colorValue; + RunesMidPage.formatingData.RedSideColorSeparationBar = colorValue; + RunesSuppPage.formatingData.RedSideColorSeparationBar = colorValue; + RunesTopPage.formatingData.RedSideColorSeparationBar = colorValue; + RunesAllPage.formatingData.RedSideColorSeparationBar = colorValue; + } + } + + + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int BlueSideColorBorderChampion { get; set; } = 2; + public static string BlueSideColorBorderChampionNotSet = RunesAdcPage.formatingData.BlueSideColorBorderChampion.Split(" ")[2]; + public static void BlueSideColorBorderChampionSubmit() + { + RunesAdcPage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + RunesAdcSuppPage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + RunesJunglePage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + RunesMidPage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + RunesSuppPage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + RunesTopPage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + RunesAllPage.formatingData.BlueSideColorBorderChampion = overlay.BlueSideColorBorderChampion.ToString() + "px solid " + BlueSideColorBorderChampionNotSet; + } + + public static string TempsBlueSideColorBorderChampion() + { + string[] tempsColor = RunesAdcPage.formatingData.BlueSideColorBorderChampion.Split(" "); + return tempsColor[2]; + } + + public static void SetBlueSideColorBorderChampion() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + string[] tempsBorderColor = RunesAdcPage.formatingData.BlueSideColorBorderChampion.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPicker = "hidden"; + BlueSideColorBorderChampionNotSet = colorValue; + } + } + + [Required] + [Range(0, 10, ErrorMessage = "Accommodation invalid (1-10).")] + public int RedSideColorBorderChampion { get; set; } = 2; + public static string RedSideColorBorderChampionNotSet = RunesAdcPage.formatingData.RedSideColorBorderChampion.Split(" ")[2]; + public static void RedSideColorBorderChampionSubmit() + { + RunesAdcPage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + RunesAdcSuppPage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + RunesJunglePage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + RunesMidPage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + RunesSuppPage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + RunesTopPage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + RunesAllPage.formatingData.RedSideColorBorderChampion = overlay.RedSideColorBorderChampion.ToString() + "px solid " + RedSideColorBorderChampionNotSet; + } + + public static string TempsRedSideColorBorderChampion() + { + string[] tempsColor = RunesAdcPage.formatingData.RedSideColorBorderChampion.Split(" "); + return tempsColor[2]; + } + + public static void SetRedSideColorBorderChampion() + { + if (colorPicker.Equals("hidden")) + { + colorPicker = "visible"; + string[] tempsBorderColor = RunesAdcPage.formatingData.RedSideColorBorderChampion.Split(" "); + colorValue = tempsBorderColor[2]; + } + else + { + colorPicker = "hidden"; + RedSideColorBorderChampionNotSet = colorValue; + } + } + } + } +} diff --git a/OSL-Server/Pages/Runes/RunesPage.razor.css b/OSL-Server/Pages/Runes/RunesPage.razor.css new file mode 100644 index 0000000..e9abff5 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesPage.razor.css @@ -0,0 +1,83 @@ +@font-face { + font-family: MyFont; + src: url(../css/font/fonts/fontLoL.ttf); +} + +html, body { + background-color: black; + color: white; +} + +.title { + font-family: MyFont; + font-weight: bold; + text-decoration: underline; +} + +.parent { + overflow: hidden +} + +/*.summoner-lane { + justify-content: center; +}*/ + +.summoner-lane { + display: flex; + /*clear: both;*/ + /*height: 300px;*/ + /*width: 1000px;*/ +} + +.blue-side { + flex: 1; + padding: 1em; + border: solid; + /*width: 500px;*/ +} + +.red-side { + flex: 1; + padding: 1em; + border: solid; + /*width: 500px;*/ +} + + +.summoner-lane-info { + display: flex; + position: relative; + vertical-align: middle; + align-items: center; +} + +.summoner-lane-info-summoner-name { + font-size: 22px; + margin: 5px; + vertical-align: middle; +} + +.summoner-lane-info-picture-champ { +} + +.summoner-lane-info-picture-champ-img { + height: 50px; + margin: 5px; + /*border: 5px solid red;*/ +} + +.summoner-lane-info-select { + margin: 5px; +} + +.color-picker { + position: absolute; + left: 650px; + top: 330px; + border: 5px solid black; +} + +.button-color { + height: 30px; + width: 30px; +} \ No newline at end of file diff --git a/OSL-Server/Pages/Runes/RunesSuppPage.razor b/OSL-Server/Pages/Runes/RunesSuppPage.razor new file mode 100644 index 0000000..26fad0f --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesSuppPage.razor @@ -0,0 +1,117 @@ +@page "/runes/supp" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay Supp + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ @*Lane picture*@ +
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.Lane.CompareTo(RunesPage.Lanes.Support) == 0) + { + if (participants.TeamId == 100) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } +
+ @foreach (int perks in participants.Perks.perkIds) + { + @*Display perks*@ +
+ +
+ } +
+ if (participants.TeamId == 100) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + } +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesSuppPage.razor.cs b/OSL-Server/Pages/Runes/RunesSuppPage.razor.cs new file mode 100644 index 0000000..a5aa03b --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesSuppPage.razor.cs @@ -0,0 +1,63 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesSuppPage + { + private static OSLLogger _logger = new OSLLogger("RunesSuppPage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner{ get; set; } + public string RedSideColorTextSummoner{ get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar{ get; set; } + public string RedSideColorSeparationBar{ get; set; } + public string BakgroundPicture{ get; set; } + public string LanePicture{ get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesSuppPage(); + } + + } +} diff --git a/OSL-Server/Pages/Runes/RunesSuppPage.razor.css b/OSL-Server/Pages/Runes/RunesSuppPage.razor.css new file mode 100644 index 0000000..4b9e983 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesSuppPage.razor.css @@ -0,0 +1,328 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; + /*background-color: red;*/ +} + + .perks-background .perks-background-img { + /*background-color: red;*/ + position: absolute; + left: 592px; + top: 845px; + height: 235px; + /*display: none;*/ + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 609px; + width: 717px; + height: 220px; + position: absolute; + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + } + + .perks-background .perks-background-color { + /*top: 854px;*/ + /*left: 609px;*/ + width: 717px; + height: 220px; + /*position: absolute;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + } + + +.separation-bar:nth-child(6) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 637px; +} + +.separation-bar:nth-child(10) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 1097px; +} + +.lane-picture { + position: absolute; +} + + .lane-picture .lane-picture-img { + position: absolute; + top: 860px; + left: 940px; + height: 50px; + } + + +.perks { + /*background: url(./assets/runes/background.png);*/ + /* background-size: 1920px;*/ + height: 1080px; + width: 1920px; +} + +.summoner-name { + position: absolute; +} + + .summoner-name:nth-child(3) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + right: 1000px; + position: absolute; + letter-spacing: -2px; + /*color: #0b849e;*/ + /*display: none*/ + } + + .summoner-name:nth-child(7) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + left: 1010px; + position: absolute; + letter-spacing: -2px; + /*color: #be1e37;*/ + } + +.champ-picture { + position: absolute; +} + + .champ-picture:nth-child(4) .champ-picture-img { + height: 105px; + top: 930px; + left: 853px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + .champ-picture:nth-child(8) .champ-picture-img { + height: 105px; + top: 930px; + left: 977px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + +.perks-list { + position: absolute; + display: flex; +} + + .perks-list:nth-child(5) { + /*top: 100px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) { + top: 905px; + left: 775px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) { + top: 930px; + left: 737.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) { + top: 930px; + left: 697.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) { + top: 930px; + left: 657.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) { + top: 990px; + left: 801.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) { + top: 990px; + left: 761.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) { + top: 995px; + left: 701.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) { + top: 995px; + left: 671.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) { + top: 995px; + left: 641.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) { + /*top: 100px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) { + top: 905px; + left: 1085px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) { + top: 930px; + left: 1156.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) { + top: 930px; + left: 1196.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) { + top: 930px; + left: 1236.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) { + top: 990px; + left: 1092.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) { + top: 990px; + left: 1132.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) { + top: 995px; + left: 1202.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) { + top: 995px; + left: 1232.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) { + top: 995px; + left: 1262.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } diff --git a/OSL-Server/Pages/Runes/RunesTopPage.razor b/OSL-Server/Pages/Runes/RunesTopPage.razor new file mode 100644 index 0000000..c2cf2da --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesTopPage.razor @@ -0,0 +1,117 @@ +@page "/runes/top" +@using OSL_Server.DataReciveClient.Processing.ChampSelect; +@using OSL_Server.DataLoader.CDragon; +@using Newtonsoft.Json; +@layout EmptyLayout +Runes Overlay Top + +
+ @**@ + @{ + string backgroundPicture; + if (RunesPage.overlay.BackgroundPicture == false) + { + backgroundPicture = ""; + } + else + { + backgroundPicture = formatingData.BakgroundPicture; + } + + string colorForegroundBackground; + if (RunesPage.overlay.ForegroundBackground == false) + { + colorForegroundBackground = ""; + } + else + { + colorForegroundBackground = formatingData.OverlayColorBackgroudGradient; + } + } +
+ @*Bakground color*@ +
+ @*Black veil*@ +
+
+
+ @*Bakground picture*@ + +
+ @*Lane picture*@ +
+ +
+ @foreach (var participants in RunesPage.summonerPerksList) + { + @if (participants.Lane.CompareTo(RunesPage.Lanes.Top) == 0) + { + if (participants.TeamId == 100) + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } + else + { + @*Display name*@ +
+ @participants.SummonerName +
+ + @*Display champ picture*@ +
+ +
+ } +
+ @foreach (int perks in participants.Perks.perkIds) + { + @*Display perks*@ +
+ +
+ } +
+ if (participants.TeamId == 100) + { + @*Perks separator bar*@ +
+
+ } + else + { + @*Perks separator bar*@ +
+
+ } + } + } +
+ + +@code { + private System.Timers.Timer timer = new(5000); + + protected override void OnInitialized() + { + timer.Elapsed += (sender, eventArgs) => OnTimerCallback(); + timer.Start(); + } + + private void OnTimerCallback() + { + _ = InvokeAsync(() => + { + StateHasChanged(); + }); + } + + public void Dispose() => timer.Dispose(); +} diff --git a/OSL-Server/Pages/Runes/RunesTopPage.razor.cs b/OSL-Server/Pages/Runes/RunesTopPage.razor.cs new file mode 100644 index 0000000..3adc55d --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesTopPage.razor.cs @@ -0,0 +1,62 @@ +using Newtonsoft.Json; +using OSL_Server.Configuration; +using OSL_Server.DataLoader.CDragon; +using OSL_Server.DataLoader.WebApiRiot; + +namespace OSL_Server.Pages.Runes +{ + public partial class RunesTopPage + { + private static OSLLogger _logger = new OSLLogger("RunesTopPage"); + + //Data for display color, texte, picture on web page + public static FormatingData formatingData = new(); + + public class FormatingData + { + public string DefaultPatch { get; set; } + public string DefaultRegion { get; set; } + public string BackgroudGradient { get; set; } + public string OverlayColorBackgroudGradient { get; set; } + public string BlueSideColorTextSummoner{ get; set; } + public string RedSideColorTextSummoner{ get; set; } + public string BlueSideColorBorderChampion { get; set; } + public string RedSideColorBorderChampion { get; set; } + public string BlueSideColorSeparationBar{ get; set; } + public string RedSideColorSeparationBar{ get; set; } + public string BakgroundPicture{ get; set; } + public string LanePicture{ get; set; } + } + + /// + /// Return path of perks icon + /// + /// + /// + public static string GetPerksIconPath(int perksId) + { + int indexPatch = CDragon.dataCDragon.Patch.FindIndex(obj => obj.Name == formatingData.DefaultPatch); + int indexRegion = CDragon.dataCDragon.Patch[indexPatch].Region.FindIndex(obj => obj.Name == formatingData.DefaultRegion); + int indexPerks = CDragon.dataCDragon.Patch[indexPatch].Region[indexRegion].RegionContent.Perks.FindIndex(obj => obj.Id == perksId); + return CDragon.dataCDragon.Patch[0].Region[0].RegionContent.Perks[indexPerks].IconPath; + } + + /// + /// Return champion picture path + /// + /// + /// + public static string GetChampionPicturePath(int champId) + { + return $"./assets/{formatingData.DefaultPatch}/{formatingData.DefaultRegion}/Champions/{champId}/default-square.png"; + } + + /// + /// Load default datat champ select + /// + public static void ResetColor() + { + Config.LoadFormatingDataConfigRunesTopPage(); + } + } +} diff --git a/OSL-Server/Pages/Runes/RunesTopPage.razor.css b/OSL-Server/Pages/Runes/RunesTopPage.razor.css new file mode 100644 index 0000000..4b9e983 --- /dev/null +++ b/OSL-Server/Pages/Runes/RunesTopPage.razor.css @@ -0,0 +1,328 @@ +@font-face { + font-family: LolFont; + src: url(./css/font/fontLoL.ttf); +} + +@font-face { + font-family: EurostileCondensedBold; + src: url("css/font/EurostileCondensedBold.otf") format("opentype"); +} + +html, body { + font-family: EurostileCondensedBold; + background-color: black; + color: white; +} + +.perks-background { + width: 1920px; + height: 1080px; + position: absolute; + /*background-color: red;*/ +} + + .perks-background .perks-background-img { + /*background-color: red;*/ + position: absolute; + left: 592px; + top: 845px; + height: 235px; + /*display: none;*/ + } + + .perks-background .perks-background-gradiant { + top: 854px; + left: 609px; + width: 717px; + height: 220px; + position: absolute; + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + } + + .perks-background .perks-background-color { + /*top: 854px;*/ + /*left: 609px;*/ + width: 717px; + height: 220px; + /*position: absolute;*/ + /*background-image: linear-gradient( to right, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.83) 100% );*/ + /*background-image: linear-gradient(150deg, #0b849e 0%, #be1e37 100%);*/ + } + + +.separation-bar:nth-child(6) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 637px; +} + +.separation-bar:nth-child(10) { + position: absolute; + height: 2px; + width: 200px; + /*background-color: #c99d53;*/ + top: 980px; + left: 1097px; +} + +.lane-picture { + position: absolute; +} + + .lane-picture .lane-picture-img { + position: absolute; + top: 860px; + left: 940px; + height: 50px; + } + + +.perks { + /*background: url(./assets/runes/background.png);*/ + /* background-size: 1920px;*/ + height: 1080px; + width: 1920px; +} + +.summoner-name { + position: absolute; +} + + .summoner-name:nth-child(3) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + right: 1000px; + position: absolute; + letter-spacing: -2px; + /*color: #0b849e;*/ + /*display: none*/ + } + + .summoner-name:nth-child(7) { + font-family: EurostileCondensedBold; + font-size: 40px; + top: 850px; + left: 1010px; + position: absolute; + letter-spacing: -2px; + /*color: #be1e37;*/ + } + +.champ-picture { + position: absolute; +} + + .champ-picture:nth-child(4) .champ-picture-img { + height: 105px; + top: 930px; + left: 853px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + .champ-picture:nth-child(8) .champ-picture-img { + height: 105px; + top: 930px; + left: 977px; + position: absolute; + /*border: 2px solid #c99d53;*/ + } + + +.perks-list { + position: absolute; + display: flex; +} + + .perks-list:nth-child(5) { + /*top: 100px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) { + top: 905px; + left: 775px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) { + top: 930px; + left: 737.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) { + top: 930px; + left: 697.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) { + top: 930px; + left: 657.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) { + top: 990px; + left: 801.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) { + top: 990px; + left: 761.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) { + top: 995px; + left: 701.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) { + top: 995px; + left: 671.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) { + top: 995px; + left: 641.5px; + position: absolute; + } + + .perks-list:nth-child(5) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) { + /*top: 100px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) { + top: 905px; + left: 1085px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(1) .perks-img { + height: 80px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) { + top: 930px; + left: 1156.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(2) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) { + top: 930px; + left: 1196.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(3) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) { + top: 930px; + left: 1236.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(4) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) { + top: 990px; + left: 1092.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(5) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) { + top: 990px; + left: 1132.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(6) .perks-img { + height: 40.5px; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) { + top: 995px; + left: 1202.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(7) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) { + top: 995px; + left: 1232.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(8) .perks-img { + /*height: 40.5px;*/ + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) { + top: 995px; + left: 1262.5px; + position: absolute; + } + + .perks-list:nth-child(9) .perks-wrapper:nth-child(9) .perks-img { + /*height: 40.5px;*/ + } diff --git a/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor b/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor new file mode 100644 index 0000000..25c1735 --- /dev/null +++ b/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor @@ -0,0 +1,22 @@ +@page "/waitinggamestart" +@using MudBlazor + +Wainting Game Start +
+
+
+

Wainting Game Start

+
- Display Runes +
- Display Summoner stats +
+
+
+ + + + + + +@code { + +} diff --git a/OSL-Server/Pages/WaitingGameStartPage.razor.cs b/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor.cs similarity index 74% rename from OSL-Server/Pages/WaitingGameStartPage.razor.cs rename to OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor.cs index 3d0f4a4..89a4ecf 100644 --- a/OSL-Server/Pages/WaitingGameStartPage.razor.cs +++ b/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor.cs @@ -1,4 +1,4 @@ -namespace OSL_Server.Pages +namespace OSL_Server.Pages.WaitingGameStart { public partial class WaitingGameStartPage { diff --git a/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor.css b/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor.css new file mode 100644 index 0000000..b1bfe6f --- /dev/null +++ b/OSL-Server/Pages/WaitingGameStart/WaitingGameStartPage.razor.css @@ -0,0 +1,15 @@ +@font-face { + font-family: MyFont; + src: url(../css/font/fonts/fontLoL.ttf); +} + +html, body { + background-color: black; + color: white; +} + +.title { + font-family: MyFont; + font-weight: bold; + text-decoration: underline; +} diff --git a/OSL-Server/Pages/WaitingGameStartPage.razor b/OSL-Server/Pages/WaitingGameStartPage.razor deleted file mode 100644 index 2264f05..0000000 --- a/OSL-Server/Pages/WaitingGameStartPage.razor +++ /dev/null @@ -1,13 +0,0 @@ -@page "/waitinggamestart" - -Wainting Game Start -
-
-
-

Wainting Game Start

-
-
-
-@code { - -} diff --git a/OSL-Server/Pages/_Host.cshtml b/OSL-Server/Pages/_Host.cshtml index 4dc63f1..72f6de3 100644 --- a/OSL-Server/Pages/_Host.cshtml +++ b/OSL-Server/Pages/_Host.cshtml @@ -5,4 +5,5 @@ Layout = "_Layout"; } +@**@ \ No newline at end of file diff --git a/OSL-Server/PagesManager/Pages.cs b/OSL-Server/PagesManager/Pages.cs deleted file mode 100644 index cf3975c..0000000 --- a/OSL-Server/PagesManager/Pages.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace OSL_Server.PagesManager -{ - public class Pages - { - public static void Create() - { - - } - - public static void Update() - { - - } - - public static void Delete() - { - - } - } -} diff --git a/OSL-Server/Program.cs b/OSL-Server/Program.cs index 7e90142..5b267c5 100644 --- a/OSL-Server/Program.cs +++ b/OSL-Server/Program.cs @@ -1,5 +1,4 @@ using OSL_Server.Configuration; -using OSL_Server.Data; using MudBlazor.Services; using OSL_Server.Communication; using OSL_Server.Pages; @@ -9,13 +8,14 @@ using System.Diagnostics; using System.Net.Sockets; using System.Net; +using OSL_Server.DataLoader.WebApiRiot; +using OSL_Server.Pages.Runes; var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddRazorPages(); builder.Services.AddServerSideBlazor(); -builder.Services.AddSingleton(); builder.Services.AddMudServices(); @@ -46,7 +46,7 @@ Console.WriteLine("###########################################\n"); Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("###########################"); -Console.WriteLine("##### Version 0.3.0 #####"); +Console.WriteLine("###### Version 1.0.0 ######"); Console.WriteLine("###########################\n"); Console.ResetColor(); diff --git a/OSL-Server/Shared/NavMenu.razor b/OSL-Server/Shared/NavMenu.razor index 2c4ea8a..9544b7e 100644 --- a/OSL-Server/Shared/NavMenu.razor +++ b/OSL-Server/Shared/NavMenu.razor @@ -51,11 +51,16 @@ In Game
- @**@ + +

Classes

-
AppStateController
-
-
ByteUtils
-
-
Champion
-
-
ChampionLevel
-
FarsightController
FarsightController.Offsets
-
GameObject
-
-
GameObject.Offsets
-
-
HexStringJsonConverter
-
-
JSONConfig
-
Memory
-
Offsets
-
Snapshot

Structs diff --git a/docs/apiclient/toc.html b/docs/apiclient/toc.html index c7d9fb6..10ecdb6 100644 --- a/docs/apiclient/toc.html +++ b/docs/apiclient/toc.html @@ -127,59 +127,83 @@ + +
  • + + OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO + + + +
  • +
  • + + OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT + + + +
  • +
  • + + OSL_Client.RiotApp.MemoryProcessing.Common.Utils + + + +
  • +
  • + + OSL_Client.RiotApp.MemoryProcessing.Object + + + diff --git a/docs/apiserver/OSL_Server.Configuration.Config.html b/docs/apiserver/OSL_Server.Configuration.Config.html index 0012058..0108a15 100644 --- a/docs/apiserver/OSL_Server.Configuration.Config.html +++ b/docs/apiserver/OSL_Server.Configuration.Config.html @@ -141,7 +141,7 @@

    Fields Improve this Doc - View Source + View Source

    oslServerHost

    @@ -170,7 +170,7 @@
    Field Value
    Improve this Doc - View Source + View Source

    oslServerHostName

    @@ -199,7 +199,7 @@
    Field Value
    Improve this Doc - View Source + View Source

    oslServerHttpPort

    @@ -228,7 +228,7 @@
    Field Value
    Improve this Doc - View Source + View Source

    oslServerHttpsPort

    @@ -259,7 +259,7 @@

    Methods Improve this Doc - View Source + View Source

    LoadConfig()

    @@ -275,7 +275,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigCDragon()

    @@ -291,7 +291,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigChampSelectView1()

    @@ -307,7 +307,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigChampSelectView2()

    @@ -323,7 +323,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigChampSelectView3()

    @@ -339,7 +339,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigChampSelectView4()

    @@ -350,12 +350,57 @@
    Declaration
    public static void LoadConfigChampSelectView4()
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigEndGameView1Page()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigEndGameView1Page()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigEndGameView2Page()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigEndGameView2Page()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigEndGameView3Page()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigEndGameView3Page()
    +
    | Improve this Doc - View Source + View Source

    LoadConfigInGameView1()

    @@ -370,7 +415,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigInGameView2()

    @@ -385,7 +430,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigInGameView3()

    @@ -400,22 +445,143 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigOslServerHost()

    -
    +

    Load Config Osl Server Host for urls

    +
    Declaration
    public static void LoadConfigOslServerHost()
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesAdcPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesAdcPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesAdcSuppPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesAdcSuppPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesAllPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesAllPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesJunglePage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesJunglePage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesMidPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesMidPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesSuppPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesSuppPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadConfigRunesTopPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadConfigRunesTopPage()
    +
    | Improve this Doc - View Source + View Source

    LoadConfigServerSocket()

    @@ -431,7 +597,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadConfigTimer()

    @@ -447,7 +613,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadDefaultSession()

    @@ -458,12 +624,28 @@
    Declaration
    public static void LoadDefaultSession()
    + + | + Improve this Doc + + + View Source + + +

    LoadDefaultSessionEndGame()

    +

    Load Default Session for display att start information on end game views

    +
    +
    +
    Declaration
    +
    +
    public static void LoadDefaultSessionEndGame()
    +
    | Improve this Doc - View Source + View Source

    LoadFormatingDataConfigChampSelectView1()

    @@ -479,7 +661,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadFormatingDataConfigChampSelectView2()

    @@ -495,7 +677,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadFormatingDataConfigChampSelectView3()

    @@ -511,7 +693,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadFormatingDataConfigChampSelectView4()

    @@ -522,12 +704,57 @@
    Declaration
    public static void LoadFormatingDataConfigChampSelectView4()
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigEndGameView1()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigEndGameView1()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigEndGameView2()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigEndGameView2()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigEndGameView3()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigEndGameView3()
    +
    | Improve this Doc - View Source + View Source

    LoadFormatingDataConfigInGameView1()

    @@ -542,7 +769,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadFormatingDataConfigInGameView2()

    @@ -557,7 +784,7 @@
    Declaration
    Improve this Doc - View Source + View Source

    LoadFormatingDataConfigInGameView3()

    @@ -567,6 +794,126 @@
    Declaration
    public static void LoadFormatingDataConfigInGameView3()
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesAdcPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesAdcPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesAdcSuppPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesAdcSuppPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesAllPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesAllPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesJunglePage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesJunglePage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesMidPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesMidPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesSuppPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesSuppPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadFormatingDataConfigRunesTopPage()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadFormatingDataConfigRunesTopPage()
    +
    + + | + Improve this Doc + + + View Source + + +

    LoadWebRiotApiKey()

    +
    +
    +
    Declaration
    +
    +
    public static void LoadWebRiotApiKey()
    +
  • diff --git a/docs/apiserver/OSL_Server.DataLoader.CDragon.PerksManager.html b/docs/apiserver/OSL_Server.DataLoader.CDragon.PerksManager.html index f3e8d8d..d6fe9f0 100644 --- a/docs/apiserver/OSL_Server.DataLoader.CDragon.PerksManager.html +++ b/docs/apiserver/OSL_Server.DataLoader.CDragon.PerksManager.html @@ -232,7 +232,7 @@
    Parameters
    Improve this Doc - View Source + View Source

    DownloadPerksStyle(String, String, String, Int32, Int32)

    @@ -285,7 +285,7 @@
    Parameters
    Improve this Doc - View Source + View Source

    PerksAsyncDownload(Int32, Int32, String, Object, String, Int32, String)

    @@ -348,7 +348,7 @@
    Parameters
    Improve this Doc - View Source + View Source

    UpdateDataCDragonPerks(Int32, Int32, Object, String)

    diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html new file mode 100644 index 0000000..0acb9f4 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html @@ -0,0 +1,329 @@ + + + + + + + + Class Match_V5 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html new file mode 100644 index 0000000..08213a5 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html @@ -0,0 +1,205 @@ + + + + + + + + Class Spectator_V4 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html new file mode 100644 index 0000000..5ffc18f --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html @@ -0,0 +1,368 @@ + + + + + + + + Class SummonerDTO + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html new file mode 100644 index 0000000..fce0f38 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html @@ -0,0 +1,346 @@ + + + + + + + + Class Summoner_V4 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html new file mode 100644 index 0000000..4cf9912 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html @@ -0,0 +1,187 @@ + + + + + + + + Class UrlRequest + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html new file mode 100644 index 0000000..ed3b896 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html @@ -0,0 +1,252 @@ + + + + + + + + Class WebApiRiot + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.html b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.html new file mode 100644 index 0000000..7fc89e4 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataLoader.WebApiRiot.html @@ -0,0 +1,136 @@ + + + + + + + + Namespace OSL_Server.DataLoader.WebApiRiot + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.GameFlowPhaseStatus.html b/docs/apiserver/OSL_Server.DataReciveClient.GameFlowPhaseStatus.html index bd93252..f5eee37 100644 --- a/docs/apiserver/OSL_Server.DataReciveClient.GameFlowPhaseStatus.html +++ b/docs/apiserver/OSL_Server.DataReciveClient.GameFlowPhaseStatus.html @@ -141,7 +141,7 @@

    Properties Improve this Doc - View Source + View Source

    Date

    @@ -171,7 +171,7 @@
    Property Value
    Improve this Doc - View Source + View Source

    Phase

    @@ -201,7 +201,7 @@
    Property Value
    Improve this Doc - View Source + View Source

    Status

    diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html new file mode 100644 index 0000000..cc9b07d --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html @@ -0,0 +1,218 @@ + + + + + + + + Class EndGameInfo.Bans + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html new file mode 100644 index 0000000..f54ae3d --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html @@ -0,0 +1,248 @@ + + + + + + + + Class EndGameInfo.Events + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html new file mode 100644 index 0000000..c2a53fb --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html @@ -0,0 +1,278 @@ + + + + + + + + Class EndGameInfo.InfoEndGame + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html new file mode 100644 index 0000000..ba415b2 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html @@ -0,0 +1,698 @@ + + + + + + + + Class EndGameInfo.Stats + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html new file mode 100644 index 0000000..2085dcf --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html @@ -0,0 +1,338 @@ + + + + + + + + Class EndGameInfo.SummonerInfo + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html new file mode 100644 index 0000000..c1de0b4 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html @@ -0,0 +1,308 @@ + + + + + + + + Class EndGameInfo + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.html new file mode 100644 index 0000000..13ff8eb --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.EndGame.html @@ -0,0 +1,135 @@ + + + + + + + + Namespace OSL_Server.DataReciveClient.Processing.EndGame + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html new file mode 100644 index 0000000..92c876a --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html @@ -0,0 +1,221 @@ + + + + + + + + Class InGameInfo + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.Processing.InGame.html b/docs/apiserver/OSL_Server.DataReciveClient.Processing.InGame.html new file mode 100644 index 0000000..0c609a2 --- /dev/null +++ b/docs/apiserver/OSL_Server.DataReciveClient.Processing.InGame.html @@ -0,0 +1,125 @@ + + + + + + + + Namespace OSL_Server.DataReciveClient.Processing.InGame + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html b/docs/apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html index 950539c..14532a3 100644 --- a/docs/apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html +++ b/docs/apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html @@ -141,7 +141,7 @@

    Methods Improve this Doc - View Source + View Source

    ReadData(String)

    diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html new file mode 100644 index 0000000..9d8dbe5 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html @@ -0,0 +1,1131 @@ + + + + + + + + Class ChampSelectPage.TextValueOverlayView1 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html new file mode 100644 index 0000000..c69a31e --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html @@ -0,0 +1,664 @@ + + + + + + + + Class ChampSelectPage.TextValueOverlayView2 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html new file mode 100644 index 0000000..29f93bb --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html @@ -0,0 +1,663 @@ + + + + + + + + Class ChampSelectPage.TextValueOverlayView3 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html new file mode 100644 index 0000000..7cfb492 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html @@ -0,0 +1,1320 @@ + + + + + + + + Class ChampSelectPage.TextValueOverlayView4 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html new file mode 100644 index 0000000..62f590d --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html @@ -0,0 +1,304 @@ + + + + + + + + Class ChampSelectPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html new file mode 100644 index 0000000..827d770 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html @@ -0,0 +1,999 @@ + + + + + + + + Class ChampSelectView1Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html new file mode 100644 index 0000000..52f8b1f --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html @@ -0,0 +1,251 @@ + + + + + + + + Class ChampSelectView1Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html new file mode 100644 index 0000000..ed6d1b3 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html @@ -0,0 +1,1118 @@ + + + + + + + + Class ChampSelectView2Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html new file mode 100644 index 0000000..5dc0695 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html @@ -0,0 +1,251 @@ + + + + + + + + Class ChampSelectView2Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html new file mode 100644 index 0000000..a8e0de2 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html @@ -0,0 +1,1119 @@ + + + + + + + + Class ChampSelectView3Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html new file mode 100644 index 0000000..0ba56ca --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html @@ -0,0 +1,251 @@ + + + + + + + + Class ChampSelectView3Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html new file mode 100644 index 0000000..57a2872 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html @@ -0,0 +1,1089 @@ + + + + + + + + Class ChampSelectView4Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html new file mode 100644 index 0000000..9e75b2c --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html @@ -0,0 +1,251 @@ + + + + + + + + Class ChampSelectView4Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ChampSelect.html b/docs/apiserver/OSL_Server.Pages.ChampSelect.html new file mode 100644 index 0000000..1c11a54 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.ChampSelect.html @@ -0,0 +1,161 @@ + + + + + + + + Namespace OSL_Server.Pages.ChampSelect + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html b/docs/apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html index 0f20de5..7d7176a 100644 --- a/docs/apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html +++ b/docs/apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html @@ -140,7 +140,7 @@

    Properties Improve this Doc - View Source + View Source

    Port

    @@ -167,6 +167,38 @@
    Property Value
    + + | + Improve this Doc + + + View Source + + +

    WebRiotApiKey

    +
    +
    +
    Declaration
    +
    +
    [Required]
    +[StringLength(42, MinimumLength = 42, ErrorMessage = "API key is incorect (42 character).")]
    +public string WebRiotApiKey { get; set; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.String
    diff --git a/docs/apiserver/OSL_Server.Pages.ConfigPage.html b/docs/apiserver/OSL_Server.Pages.ConfigPage.html index 8583cc2..af1ef88 100644 --- a/docs/apiserver/OSL_Server.Pages.ConfigPage.html +++ b/docs/apiserver/OSL_Server.Pages.ConfigPage.html @@ -141,7 +141,7 @@

    Methods Improve this Doc - View Source + View Source

    GenerateConfigFileChampSelectView1()

    @@ -166,6 +166,21 @@
    Returns
    + + | + Improve this Doc + + + View Source + + +

    WebRiotApiKeySubmit()

    +
    +
    +
    Declaration
    +
    +
    public static void WebRiotApiKeySubmit()
    +
    diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html new file mode 100644 index 0000000..575c7a8 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html @@ -0,0 +1,2686 @@ + + + + + + + + Class EndGamePage.TextValueOverlayView1 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html new file mode 100644 index 0000000..8529cab --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html @@ -0,0 +1,2686 @@ + + + + + + + + Class EndGamePage.TextValueOverlayView2 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html new file mode 100644 index 0000000..3629b4f --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html @@ -0,0 +1,3032 @@ + + + + + + + + Class EndGamePage.TextValueOverlayView3 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.html new file mode 100644 index 0000000..be31caa --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGamePage.html @@ -0,0 +1,483 @@ + + + + + + + + Class EndGamePage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html new file mode 100644 index 0000000..7f87c1c --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html @@ -0,0 +1,2618 @@ + + + + + + + + Class EndGameView1Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html new file mode 100644 index 0000000..7b23d57 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html @@ -0,0 +1,1258 @@ + + + + + + + + Class EndGameView1Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html new file mode 100644 index 0000000..36eb8bc --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html @@ -0,0 +1,2618 @@ + + + + + + + + Class EndGameView2Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html new file mode 100644 index 0000000..f7bc688 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html @@ -0,0 +1,1211 @@ + + + + + + + + Class EndGameView2Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html new file mode 100644 index 0000000..e4e26e2 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html @@ -0,0 +1,2648 @@ + + + + + + + + Class EndGameView3Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html new file mode 100644 index 0000000..e5acc1d --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html @@ -0,0 +1,1211 @@ + + + + + + + + Class EndGameView3Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGame.html b/docs/apiserver/OSL_Server.Pages.EndGame.html new file mode 100644 index 0000000..d9247ce --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGame.html @@ -0,0 +1,143 @@ + + + + + + + + Namespace OSL_Server.Pages.EndGame + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.EndGameTestPage.html b/docs/apiserver/OSL_Server.Pages.EndGameTestPage.html new file mode 100644 index 0000000..7f7cf9b --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.EndGameTestPage.html @@ -0,0 +1,391 @@ + + + + + + + + Class EndGameTestPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html new file mode 100644 index 0000000..c99416d --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html @@ -0,0 +1,464 @@ + + + + + + + + Class InGamePage.TextValueOverlayView1 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html new file mode 100644 index 0000000..117b3ec --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html @@ -0,0 +1,464 @@ + + + + + + + + Class InGamePage.TextValueOverlayView2 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html new file mode 100644 index 0000000..512a87c --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html @@ -0,0 +1,236 @@ + + + + + + + + Class InGamePage.TextValueOverlayView3 + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.html b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.html new file mode 100644 index 0000000..0966f43 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGamePage.html @@ -0,0 +1,274 @@ + + + + + + + + Class InGamePage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html new file mode 100644 index 0000000..b865801 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html @@ -0,0 +1,1059 @@ + + + + + + + + Class InGameView1Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGameView1Page.html b/docs/apiserver/OSL_Server.Pages.InGame.InGameView1Page.html new file mode 100644 index 0000000..5cbb27e --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGameView1Page.html @@ -0,0 +1,205 @@ + + + + + + + + Class InGameView1Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html new file mode 100644 index 0000000..ca0ada3 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html @@ -0,0 +1,998 @@ + + + + + + + + Class InGameView2Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGameView2Page.html b/docs/apiserver/OSL_Server.Pages.InGame.InGameView2Page.html new file mode 100644 index 0000000..54c8399 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGameView2Page.html @@ -0,0 +1,205 @@ + + + + + + + + Class InGameView2Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html b/docs/apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html new file mode 100644 index 0000000..fcd85e9 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html @@ -0,0 +1,459 @@ + + + + + + + + Class InGameView3Page.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.InGameView3Page.html b/docs/apiserver/OSL_Server.Pages.InGame.InGameView3Page.html new file mode 100644 index 0000000..aaee09f --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.InGameView3Page.html @@ -0,0 +1,205 @@ + + + + + + + + Class InGameView3Page + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.InGame.html b/docs/apiserver/OSL_Server.Pages.InGame.html new file mode 100644 index 0000000..2e3c3fd --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.InGame.html @@ -0,0 +1,145 @@ + + + + + + + + Namespace OSL_Server.Pages.InGame + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html new file mode 100644 index 0000000..b4611e6 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html @@ -0,0 +1,668 @@ + + + + + + + + Class RunesAdcPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html new file mode 100644 index 0000000..5d9c0ac --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesAdcPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html new file mode 100644 index 0000000..715c428 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html @@ -0,0 +1,548 @@ + + + + + + + + Class RunesAdcSuppPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html new file mode 100644 index 0000000..4daf8b4 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesAdcSuppPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html new file mode 100644 index 0000000..5441b4d --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html @@ -0,0 +1,788 @@ + + + + + + + + Class RunesAllPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesAllPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesAllPage.html new file mode 100644 index 0000000..87ccc7e --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesAllPage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesAllPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html new file mode 100644 index 0000000..fcb9ad1 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html @@ -0,0 +1,518 @@ + + + + + + + + Class RunesJunglePage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html new file mode 100644 index 0000000..f2a6e32 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesJunglePage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html new file mode 100644 index 0000000..ec0f9cf --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html @@ -0,0 +1,518 @@ + + + + + + + + Class RunesMidPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesMidPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesMidPage.html new file mode 100644 index 0000000..5ba0b34 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesMidPage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesMidPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html new file mode 100644 index 0000000..deda6e1 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html @@ -0,0 +1,218 @@ + + + + + + + + Class RunesPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html new file mode 100644 index 0000000..cc092f8 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html @@ -0,0 +1,308 @@ + + + + + + + + Class RunesPage.InfoForPerks + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html new file mode 100644 index 0000000..2989a1b --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html @@ -0,0 +1,188 @@ + + + + + + + + Class RunesPage.LaneInfo + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html new file mode 100644 index 0000000..5609b05 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html @@ -0,0 +1,163 @@ + + + + + + + + Enum RunesPage.Lanes + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html new file mode 100644 index 0000000..93df991 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html @@ -0,0 +1,695 @@ + + + + + + + + Class RunesPage.Overlay + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html new file mode 100644 index 0000000..b771e2c --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html @@ -0,0 +1,248 @@ + + + + + + + + Class RunesPage.Perks + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.html new file mode 100644 index 0000000..39b518b --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesPage.html @@ -0,0 +1,403 @@ + + + + + + + + Class RunesPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html new file mode 100644 index 0000000..f499070 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html @@ -0,0 +1,518 @@ + + + + + + + + Class RunesSuppPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html new file mode 100644 index 0000000..577c8f9 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesSuppPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html new file mode 100644 index 0000000..93badf1 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html @@ -0,0 +1,518 @@ + + + + + + + + Class RunesTopPage.FormatingData + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.RunesTopPage.html b/docs/apiserver/OSL_Server.Pages.Runes.RunesTopPage.html new file mode 100644 index 0000000..675037d --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.RunesTopPage.html @@ -0,0 +1,301 @@ + + + + + + + + Class RunesTopPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.Runes.html b/docs/apiserver/OSL_Server.Pages.Runes.html new file mode 100644 index 0000000..46fe51e --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.Runes.html @@ -0,0 +1,167 @@ + + + + + + + + Namespace OSL_Server.Pages.Runes + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage.html b/docs/apiserver/OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage.html new file mode 100644 index 0000000..c750899 --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage.html @@ -0,0 +1,156 @@ + + + + + + + + Class WaitingGameStartPage + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.WaitingGameStart.html b/docs/apiserver/OSL_Server.Pages.WaitingGameStart.html new file mode 100644 index 0000000..a9be96a --- /dev/null +++ b/docs/apiserver/OSL_Server.Pages.WaitingGameStart.html @@ -0,0 +1,125 @@ + + + + + + + + Namespace OSL_Server.Pages.WaitingGameStart + | OSL + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + +
    + + + + + +
    +
    + + + + + + + + + + + + + diff --git a/docs/apiserver/OSL_Server.Pages.html b/docs/apiserver/OSL_Server.Pages.html index fee4c1e..5981d1c 100644 --- a/docs/apiserver/OSL_Server.Pages.html +++ b/docs/apiserver/OSL_Server.Pages.html @@ -102,84 +102,22 @@

    Classes

    CDragonPage

    CDragon Page

    -
    -
    ChampSelectPage
    -

    Champ Select Page

    -
    -
    ChampSelectPage.TextValueOverlayView1
    -

    Text and value for display color, information on champ select view 1

    -
    -
    ChampSelectPage.TextValueOverlayView2
    -

    Text and value for display color, information on champ select view 2

    -
    -
    ChampSelectPage.TextValueOverlayView3
    -

    Text and value for display color, information on champ select view 3

    -
    -
    ChampSelectPage.TextValueOverlayView4
    -

    Text and value for display color, information on champ select view 4

    -
    -
    ChampSelectView1Page
    -

    Champ Select View1 Page

    -
    -
    ChampSelectView1Page.FormatingData
    -

    Formating Data

    -
    -
    ChampSelectView2Page
    -

    Champ Select View2 Page

    -
    -
    ChampSelectView2Page.FormatingData
    -
    -
    ChampSelectView3Page
    -

    Champ Select View3 Page

    -
    -
    ChampSelectView3Page.FormatingData
    -

    Formating Data

    -
    -
    ChampSelectView4Page
    -

    Champ Select View4 Page

    -
    -
    ChampSelectView4Page.FormatingData
    -

    Formating Data

    ConfigPage

    Config Page

    ConfigPage.ConfigOverlayText
    -
    EndGamePage
    +
    EndGameTestPage
    ErrorModel
    Index
    -
    InGamePage
    -
    -
    InGamePage.TextValueOverlayView1
    -
    -
    InGamePage.TextValueOverlayView2
    -
    -
    InGamePage.TextValueOverlayView3
    -
    -
    InGameView1Page
    -
    -
    InGameView1Page.FormatingData
    -

    Formating Data

    -
    -
    InGameView2Page
    -
    -
    InGameView2Page.FormatingData
    -
    -
    InGameView3Page
    -
    -
    InGameView3Page.FormatingData
    -

    Formating Data

    -
    RecapLinkPage
    WaitingGamePage
    -
    WaitingGameStartPage
    -
    diff --git a/docs/apiserver/index.html b/docs/apiserver/index.html index dd4dc32..ecb43a1 100644 --- a/docs/apiserver/index.html +++ b/docs/apiserver/index.html @@ -106,15 +106,1963 @@

    CDragon API :


    Game information take with Web API Riot

      -
    • Runes/Perks/Masteries (Used for found rune of all player of the curent game) : +
    • Get information of summoner Link

      +
      - Riot API (Summoner-V4) :
      +/lol/summoner/v4/summoners/by-name/{summonerName} (default)
      +
      +
      +Example value +
      {
      +  "id": "xziW6_4V-ILrHKrmgmKoB0CI3MbYRbQEC5t14KcK5F8Ib8Q",
      +  "accountId": "58tu6xAc6YNqH2I4pGafQfGVceUoGKL6h0jvXW00pdv9k44",
      +  "puuid": "r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ",
      +  "name": "Sky csc",
      +  "profileIconId": 3225,
      +  "revisionDate": 1676933459000,
      +  "summonerLevel": 265
      +}
      +
      +
      +
    • +
    +
    +
      +
    • Get Runes/Perks/Masteries/Summoners Spell from player in curent game Link

      - Riot API (Spectator-v4) :
       /lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId} (default)
       
      +
      +Example value +
      {
      +
      +}
      +
      +
    • -
    • Summoners Spell (Used for found accountId (encryptedSummonerId) of summonerName) : -
      - Riot API (Summoner-V4) :
      -/lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId} (default)
      +
    +
    +
      +
    • Get list of match ids Link

      +
      - Riot API (Match-v5) :
      +/lol/match/v5/matches/by-puuid/{puuid}/ids (default)
      +
      +
      +Example value +
      [
      +  "EUW1_6281337448",
      +  "EUW1_6281303853",
      +  "EUW1_6281242334",
      +  "EUW1_6281213734",
      +  "EUW1_6277829083",
      +  "EUW1_6277805456",
      +  "EUW1_6273892284",
      +  "EUW1_6273878983",
      +  "EUW1_6273862636",
      +  "EUW1_6273831420",
      +  "EUW1_6273826210",
      +  "EUW1_6272861280",
      +  "EUW1_6272826665",
      +  "EUW1_6270877936",
      +  "EUW1_6265457525",
      +  "EUW1_6265391413",
      +  "EUW1_6264887276",
      +  "EUW1_6264853414",
      +  "EUW1_6264813923",
      +  "EUW1_6264777311"
      +]
      +
      +
      +
    • +
    +
    +
      +
    • Get match information Link

      +
      - Riot API (Match-v5) :
      +/lol/match/v5/matches/{matchId} (default)
      +
      +
      +Example value +
        {
      +  "metadata": {
      +      "dataVersion": "2",
      +      "matchId": "EUW1_6281337448",
      +      "participants": [
      +          "sqG16BU9amBxYqoH5LZ-ucdjswJ-AvX2VdPf-X-WA1rhDmB8kYeg-7kMEk6sDDwfRYz90xPHHREEMg",
      +          "ls7NqlVCKkNreRIzQMVqa3AXk2WMhB-6qGSAf1mQyz-CPCNP1BXz-rbBBHWtBZQhAZ1wiwK0_M2igA",
      +          "F4Y6Be8otUvTH7QilCoNEWAulI4sPccaYt4FmOud5qXdp_JYmk0mEkmdFhwGNISi_7BggwCVv6TwkA",
      +          "YZVUOCBWz7JhI6UVz7B2ueOq2aWV9leBUm2IH3W1kYyKKV84d26L4jUxNiQzgHKFFRPGdDM0tPtZ4w",
      +          "nENcE7wHwp-embxEAuovWJ1qDp8EsKIHZ9eQ4P0q0mcN1olSRF6cY8uqFT95-siyg8PqmVXjZBkQFw",
      +          "5fXpwUM0GU5NXnKk98rk8-gy-5Bz6uHBDuxWUYUsNStohXGYQUkUBFmSLemINVn7RyNVk0dESRhF7Q",
      +          "r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ",
      +          "exUzRLgUAFLgLgx5BVzvIk6dp5wNtelRnmXAJzebgGG49D1_z3D4E3znqmusQ624dnm_LFil_foCvQ",
      +          "UdEiY5yUbUAcN6skV5BEWXYQbrbhug1qyYyuIXwAY0oKhyRUVpFbo18glp8uJ9pH50QxHQYI-7RgCA",
      +          "UBzXAY4_3Dmc5ZiI5hnSTDAH_ZCIwMUvXcSZNbJSDdBgu08fj33GSstvEjTSt9LPz6d0MudoaL-27w"
      +      ]
      +  },
      +  "info": {
      +      "gameCreation": 1676581669670,
      +      "gameDuration": 1256,
      +      "gameEndTimestamp": 1676583002390,
      +      "gameId": 6281337448,
      +      "gameMode": "URF",
      +      "gameName": "teambuilder-match-6281337448",
      +      "gameStartTimestamp": 1676581745918,
      +      "gameType": "MATCHED_GAME",
      +      "gameVersion": "13.3.491.6222",
      +      "mapId": 11,
      +      "participants": [
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 2,
      +              "assists": 7,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 2,
      +              "champExperience": 29193,
      +              "champLevel": 23,
      +              "championId": 35,
      +              "championName": "Shaco",
      +              "championTransform": 0,
      +              "commandPings": 1,
      +              "consumablesPurchased": 1,
      +              "damageDealtToBuildings": 0,
      +              "damageDealtToObjectives": 908,
      +              "damageDealtToTurrets": 0,
      +              "damageSelfMitigated": 19269,
      +              "dangerPings": 0,
      +              "deaths": 9,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 1,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 1,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 12874,
      +              "goldSpent": 9750,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 0,
      +              "inhibitorsLost": 3,
      +              "item0": 6653,
      +              "item1": 2421,
      +              "item2": 3108,
      +              "item3": 3116,
      +              "item4": 3020,
      +              "item5": 3191,
      +              "item6": 3340,
      +              "itemsPurchased": 16,
      +              "killingSprees": 1,
      +              "kills": 5,
      +              "lane": "TOP",
      +              "largestCriticalStrike": 0,
      +              "largestKillingSpree": 2,
      +              "largestMultiKill": 2,
      +              "longestTimeSpentLiving": 170,
      +              "magicDamageDealt": 75571,
      +              "magicDamageDealtToChampions": 18623,
      +              "magicDamageTaken": 5940,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 4,
      +              "nexusKills": 0,
      +              "nexusLost": 1,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 0,
      +              "participantId": 1,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5002,
      +                      "flex": 5008,
      +                      "offense": 5005
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8128,
      +                                  "var1": 803,
      +                                  "var2": 19,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8143,
      +                                  "var1": 740,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8138,
      +                                  "var1": 30,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8105,
      +                                  "var1": 8,
      +                                  "var2": 3,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8014,
      +                                  "var1": 426,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9104,
      +                                  "var1": 13,
      +                                  "var2": 40,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8000
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 10728,
      +              "physicalDamageDealtToChampions": 371,
      +              "physicalDamageTaken": 22052,
      +              "profileIcon": 5626,
      +              "pushPings": 0,
      +              "puuid": "sqG16BU9amBxYqoH5LZ-ucdjswJ-AvX2VdPf-X-WA1rhDmB8kYeg-7kMEk6sDDwfRYz90xPHHREEMg",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "SUPPORT",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 70,
      +              "spell2Casts": 118,
      +              "spell3Casts": 78,
      +              "spell4Casts": 116,
      +              "summoner1Casts": 9,
      +              "summoner1Id": 14,
      +              "summoner2Casts": 4,
      +              "summoner2Id": 4,
      +              "summonerId": "9WNBwhaEj9b2i2M18I5WCukkD0qf5rE7Mc2AT_q7F48tNE-1",
      +              "summonerLevel": 186,
      +              "summonerName": "SoIeil",
      +              "teamEarlySurrendered": false,
      +              "teamId": 100,
      +              "teamPosition": "",
      +              "timeCCingOthers": 48,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 94083,
      +              "totalDamageDealtToChampions": 21402,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 28568,
      +              "totalHeal": 2707,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 73,
      +              "totalTimeCCDealt": 790,
      +              "totalTimeSpentDead": 234,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 7783,
      +              "trueDamageDealtToChampions": 2408,
      +              "trueDamageTaken": 575,
      +              "turretKills": 0,
      +              "turretTakedowns": 0,
      +              "turretsLost": 11,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 7,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": false
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 5,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 29855,
      +              "champLevel": 24,
      +              "championId": 121,
      +              "championName": "Khazix",
      +              "championTransform": 0,
      +              "commandPings": 2,
      +              "consumablesPurchased": 1,
      +              "damageDealtToBuildings": 316,
      +              "damageDealtToObjectives": 32455,
      +              "damageDealtToTurrets": 316,
      +              "damageSelfMitigated": 36718,
      +              "dangerPings": 0,
      +              "deaths": 9,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 1,
      +              "dragonKills": 3,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 17624,
      +              "goldSpent": 16450,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 0,
      +              "inhibitorsLost": 3,
      +              "item0": 6671,
      +              "item1": 3074,
      +              "item2": 6676,
      +              "item3": 3031,
      +              "item4": 3508,
      +              "item5": 0,
      +              "item6": 3340,
      +              "itemsPurchased": 26,
      +              "killingSprees": 3,
      +              "kills": 6,
      +              "lane": "BOTTOM",
      +              "largestCriticalStrike": 2543,
      +              "largestKillingSpree": 2,
      +              "largestMultiKill": 2,
      +              "longestTimeSpentLiving": 218,
      +              "magicDamageDealt": 3179,
      +              "magicDamageDealtToChampions": 1715,
      +              "magicDamageTaken": 10221,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 78,
      +              "nexusKills": 0,
      +              "nexusLost": 1,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 1,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 0,
      +              "participantId": 2,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5002,
      +                      "flex": 5008,
      +                      "offense": 5008
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8128,
      +                                  "var1": 660,
      +                                  "var2": 16,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8143,
      +                                  "var1": 1105,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8138,
      +                                  "var1": 18,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8135,
      +                                  "var1": 550,
      +                                  "var2": 5,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8014,
      +                                  "var1": 499,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9111,
      +                                  "var1": 776,
      +                                  "var2": 220,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8000
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 219069,
      +              "physicalDamageDealtToChampions": 25604,
      +              "physicalDamageTaken": 36111,
      +              "profileIcon": 5692,
      +              "pushPings": 0,
      +              "puuid": "ls7NqlVCKkNreRIzQMVqa3AXk2WMhB-6qGSAf1mQyz-CPCNP1BXz-rbBBHWtBZQhAZ1wiwK0_M2igA",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "SOLO",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 185,
      +              "spell2Casts": 207,
      +              "spell3Casts": 112,
      +              "spell4Casts": 25,
      +              "summoner1Casts": 4,
      +              "summoner1Id": 4,
      +              "summoner2Casts": 10,
      +              "summoner2Id": 6,
      +              "summonerId": "RLG2Dfb0qsHMyjrRbUDlNvblAzLd5O3w7nau3pAv0bOEQfg",
      +              "summonerLevel": 377,
      +              "summonerName": "Kal El Oni",
      +              "teamEarlySurrendered": false,
      +              "teamId": 100,
      +              "teamPosition": "",
      +              "timeCCingOthers": 4,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 228785,
      +              "totalDamageDealtToChampions": 27869,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 47821,
      +              "totalHeal": 14295,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 113,
      +              "totalTimeCCDealt": 64,
      +              "totalTimeSpentDead": 231,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 6536,
      +              "trueDamageDealtToChampions": 548,
      +              "trueDamageTaken": 1488,
      +              "turretKills": 0,
      +              "turretTakedowns": 0,
      +              "turretsLost": 11,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 25,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 1,
      +              "wardsPlaced": 0,
      +              "win": false
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 5,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 26815,
      +              "champLevel": 22,
      +              "championId": 268,
      +              "championName": "Azir",
      +              "championTransform": 0,
      +              "commandPings": 0,
      +              "consumablesPurchased": 0,
      +              "damageDealtToBuildings": 2627,
      +              "damageDealtToObjectives": 2627,
      +              "damageDealtToTurrets": 2627,
      +              "damageSelfMitigated": 42401,
      +              "dangerPings": 0,
      +              "deaths": 8,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 2,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 1,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 16820,
      +              "goldSpent": 14700,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 0,
      +              "inhibitorsLost": 3,
      +              "item0": 3040,
      +              "item1": 3115,
      +              "item2": 6657,
      +              "item3": 3020,
      +              "item4": 3135,
      +              "item5": 3082,
      +              "item6": 3340,
      +              "itemsPurchased": 21,
      +              "killingSprees": 3,
      +              "kills": 14,
      +              "lane": "JUNGLE",
      +              "largestCriticalStrike": 0,
      +              "largestKillingSpree": 6,
      +              "largestMultiKill": 2,
      +              "longestTimeSpentLiving": 283,
      +              "magicDamageDealt": 128432,
      +              "magicDamageDealtToChampions": 36518,
      +              "magicDamageTaken": 9580,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 4,
      +              "nexusKills": 0,
      +              "nexusLost": 1,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 0,
      +              "participantId": 3,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5003,
      +                      "flex": 5008,
      +                      "offense": 5005
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8229,
      +                                  "var1": 1453,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8224,
      +                                  "var1": 1037,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8210,
      +                                  "var1": 2,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8237,
      +                                  "var1": 756,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8200
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8345,
      +                                  "var1": 4,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8347,
      +                                  "var1": 0,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8300
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 4867,
      +              "physicalDamageDealtToChampions": 1244,
      +              "physicalDamageTaken": 27626,
      +              "profileIcon": 5047,
      +              "pushPings": 0,
      +              "puuid": "F4Y6Be8otUvTH7QilCoNEWAulI4sPccaYt4FmOud5qXdp_JYmk0mEkmdFhwGNISi_7BggwCVv6TwkA",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "NONE",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 165,
      +              "spell2Casts": 307,
      +              "spell3Casts": 33,
      +              "spell4Casts": 14,
      +              "summoner1Casts": 6,
      +              "summoner1Id": 3,
      +              "summoner2Casts": 7,
      +              "summoner2Id": 4,
      +              "summonerId": "_gxM2hzmxDarcPXYHkXW9X7ixBjn_y2Miz_Mydt-fjHuFpc",
      +              "summonerLevel": 318,
      +              "summonerName": "VoPraX ",
      +              "teamEarlySurrendered": false,
      +              "teamId": 100,
      +              "teamPosition": "",
      +              "timeCCingOthers": 26,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 133457,
      +              "totalDamageDealtToChampions": 37920,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 38401,
      +              "totalHeal": 3603,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 88,
      +              "totalTimeCCDealt": 332,
      +              "totalTimeSpentDead": 280,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 158,
      +              "trueDamageDealtToChampions": 158,
      +              "trueDamageTaken": 1193,
      +              "turretKills": 0,
      +              "turretTakedowns": 0,
      +              "turretsLost": 11,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 17,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": false
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 2,
      +              "assists": 9,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 23435,
      +              "champLevel": 20,
      +              "championId": 1,
      +              "championName": "Annie",
      +              "championTransform": 0,
      +              "commandPings": 0,
      +              "consumablesPurchased": 1,
      +              "damageDealtToBuildings": 367,
      +              "damageDealtToObjectives": 5820,
      +              "damageDealtToTurrets": 367,
      +              "damageSelfMitigated": 23642,
      +              "dangerPings": 0,
      +              "deaths": 10,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 0,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 13132,
      +              "goldSpent": 12700,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 0,
      +              "inhibitorsLost": 3,
      +              "item0": 4636,
      +              "item1": 2421,
      +              "item2": 4645,
      +              "item3": 3089,
      +              "item4": 3191,
      +              "item5": 3020,
      +              "item6": 3340,
      +              "itemsPurchased": 18,
      +              "killingSprees": 1,
      +              "kills": 5,
      +              "lane": "TOP",
      +              "largestCriticalStrike": 192,
      +              "largestKillingSpree": 2,
      +              "largestMultiKill": 1,
      +              "longestTimeSpentLiving": 303,
      +              "magicDamageDealt": 83491,
      +              "magicDamageDealtToChampions": 26751,
      +              "magicDamageTaken": 3616,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 0,
      +              "nexusKills": 0,
      +              "nexusLost": 1,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 1,
      +              "onMyWayPings": 0,
      +              "participantId": 4,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5003,
      +                      "flex": 5008,
      +                      "offense": 5008
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8112,
      +                                  "var1": 1807,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8126,
      +                                  "var1": 605,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8138,
      +                                  "var1": 30,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8105,
      +                                  "var1": 13,
      +                                  "var2": 5,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8233,
      +                                  "var1": 9,
      +                                  "var2": 50,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8224,
      +                                  "var1": 826,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8200
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 2023,
      +              "physicalDamageDealtToChampions": 451,
      +              "physicalDamageTaken": 25640,
      +              "profileIcon": 5227,
      +              "pushPings": 0,
      +              "puuid": "YZVUOCBWz7JhI6UVz7B2ueOq2aWV9leBUm2IH3W1kYyKKV84d26L4jUxNiQzgHKFFRPGdDM0tPtZ4w",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "DUO",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 137,
      +              "spell2Casts": 101,
      +              "spell3Casts": 124,
      +              "spell4Casts": 30,
      +              "summoner1Casts": 8,
      +              "summoner1Id": 4,
      +              "summoner2Casts": 8,
      +              "summoner2Id": 14,
      +              "summonerId": "B7jOkjea_AehG7An7f47j1JuQa93omMPQYCe8yOZll2T8mQ",
      +              "summonerLevel": 137,
      +              "summonerName": "Jymster",
      +              "teamEarlySurrendered": false,
      +              "teamId": 100,
      +              "teamPosition": "",
      +              "timeCCingOthers": 28,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 87229,
      +              "totalDamageDealtToChampions": 28917,
      +              "totalDamageShieldedOnTeammates": 3173,
      +              "totalDamageTaken": 30104,
      +              "totalHeal": 1320,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 82,
      +              "totalTimeCCDealt": 198,
      +              "totalTimeSpentDead": 382,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 1714,
      +              "trueDamageDealtToChampions": 1714,
      +              "trueDamageTaken": 847,
      +              "turretKills": 0,
      +              "turretTakedowns": 0,
      +              "turretsLost": 11,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 11,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 1,
      +              "wardsPlaced": 0,
      +              "win": false
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 12,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 28286,
      +              "champLevel": 23,
      +              "championId": 58,
      +              "championName": "Renekton",
      +              "championTransform": 0,
      +              "commandPings": 0,
      +              "consumablesPurchased": 0,
      +              "damageDealtToBuildings": 3698,
      +              "damageDealtToObjectives": 3829,
      +              "damageDealtToTurrets": 3698,
      +              "damageSelfMitigated": 49214,
      +              "dangerPings": 0,
      +              "deaths": 8,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 0,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 17602,
      +              "goldSpent": 19200,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 0,
      +              "inhibitorsLost": 3,
      +              "item0": 3748,
      +              "item1": 6692,
      +              "item2": 3111,
      +              "item3": 3031,
      +              "item4": 3072,
      +              "item5": 6676,
      +              "item6": 3364,
      +              "itemsPurchased": 18,
      +              "killingSprees": 3,
      +              "kills": 12,
      +              "lane": "TOP",
      +              "largestCriticalStrike": 1052,
      +              "largestKillingSpree": 4,
      +              "largestMultiKill": 1,
      +              "longestTimeSpentLiving": 418,
      +              "magicDamageDealt": 11938,
      +              "magicDamageDealtToChampions": 3491,
      +              "magicDamageTaken": 18529,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 8,
      +              "nexusKills": 0,
      +              "nexusLost": 1,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 1,
      +              "participantId": 5,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5002,
      +                      "flex": 5008,
      +                      "offense": 5005
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8005,
      +                                  "var1": 3688,
      +                                  "var2": 1517,
      +                                  "var3": 2170
      +                              },
      +                              {
      +                                  "perk": 9111,
      +                                  "var1": 1878,
      +                                  "var2": 480,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9105,
      +                                  "var1": 7,
      +                                  "var2": 10,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8299,
      +                                  "var1": 1538,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8000
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8126,
      +                                  "var1": 1065,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8106,
      +                                  "var1": 5,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 144672,
      +              "physicalDamageDealtToChampions": 35975,
      +              "physicalDamageTaken": 24988,
      +              "profileIcon": 23,
      +              "pushPings": 0,
      +              "puuid": "nENcE7wHwp-embxEAuovWJ1qDp8EsKIHZ9eQ4P0q0mcN1olSRF6cY8uqFT95-siyg8PqmVXjZBkQFw",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "DUO",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 93,
      +              "spell2Casts": 49,
      +              "spell3Casts": 104,
      +              "spell4Casts": 17,
      +              "summoner1Casts": 9,
      +              "summoner1Id": 14,
      +              "summoner2Casts": 9,
      +              "summoner2Id": 4,
      +              "summonerId": "Nnnuo_H1rMYrtjvW81GZXDnqMkZPibwRTg1tIINJzYGILAA",
      +              "summonerLevel": 275,
      +              "summonerName": "Zob de Compet",
      +              "teamEarlySurrendered": false,
      +              "teamId": 100,
      +              "teamPosition": "",
      +              "timeCCingOthers": 31,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 160870,
      +              "totalDamageDealtToChampions": 43726,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 44564,
      +              "totalHeal": 7824,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 128,
      +              "totalTimeCCDealt": 40,
      +              "totalTimeSpentDead": 305,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 4259,
      +              "trueDamageDealtToChampions": 4259,
      +              "trueDamageTaken": 1045,
      +              "turretKills": 1,
      +              "turretTakedowns": 1,
      +              "turretsLost": 11,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 22,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 2,
      +              "wardsPlaced": 0,
      +              "win": false
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 8,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 27603,
      +              "champLevel": 22,
      +              "championId": 75,
      +              "championName": "Nasus",
      +              "championTransform": 0,
      +              "commandPings": 3,
      +              "consumablesPurchased": 0,
      +              "damageDealtToBuildings": 9243,
      +              "damageDealtToObjectives": 13087,
      +              "damageDealtToTurrets": 9243,
      +              "damageSelfMitigated": 60561,
      +              "dangerPings": 0,
      +              "deaths": 4,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 0,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": true,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 17908,
      +              "goldSpent": 16200,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 1,
      +              "inhibitorTakedowns": 1,
      +              "inhibitorsLost": 0,
      +              "item0": 3047,
      +              "item1": 3084,
      +              "item2": 4401,
      +              "item3": 3065,
      +              "item4": 3068,
      +              "item5": 0,
      +              "item6": 3340,
      +              "itemsPurchased": 23,
      +              "killingSprees": 1,
      +              "kills": 6,
      +              "lane": "MIDDLE",
      +              "largestCriticalStrike": 0,
      +              "largestKillingSpree": 5,
      +              "largestMultiKill": 1,
      +              "longestTimeSpentLiving": 670,
      +              "magicDamageDealt": 30136,
      +              "magicDamageDealtToChampions": 7624,
      +              "magicDamageTaken": 26310,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 34,
      +              "nexusKills": 0,
      +              "nexusLost": 0,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 2,
      +              "participantId": 6,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5002,
      +                      "flex": 5008,
      +                      "offense": 5008
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8128,
      +                                  "var1": 936,
      +                                  "var2": 25,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8139,
      +                                  "var1": 945,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8138,
      +                                  "var1": 18,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8135,
      +                                  "var1": 550,
      +                                  "var2": 5,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8210,
      +                                  "var1": 0,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8236,
      +                                  "var1": 28,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8200
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 122455,
      +              "physicalDamageDealtToChampions": 17721,
      +              "physicalDamageTaken": 18958,
      +              "profileIcon": 4923,
      +              "pushPings": 0,
      +              "puuid": "5fXpwUM0GU5NXnKk98rk8-gy-5Bz6uHBDuxWUYUsNStohXGYQUkUBFmSLemINVn7RyNVk0dESRhF7Q",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "SUPPORT",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 263,
      +              "spell2Casts": 40,
      +              "spell3Casts": 67,
      +              "spell4Casts": 16,
      +              "summoner1Casts": 11,
      +              "summoner1Id": 4,
      +              "summoner2Casts": 15,
      +              "summoner2Id": 6,
      +              "summonerId": "vYx_hhoEaBipJt0tONlTEPfQRTDzyT_W6HYnPHp5_wrU5r9yN5ZxwAZYfQ",
      +              "summonerLevel": 98,
      +              "summonerName": "Wymiride",
      +              "teamEarlySurrendered": false,
      +              "teamId": 200,
      +              "teamPosition": "",
      +              "timeCCingOthers": 20,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 153838,
      +              "totalDamageDealtToChampions": 25486,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 47504,
      +              "totalHeal": 13793,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 96,
      +              "totalTimeCCDealt": 148,
      +              "totalTimeSpentDead": 109,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 1247,
      +              "trueDamageDealtToChampions": 140,
      +              "trueDamageTaken": 2235,
      +              "turretKills": 2,
      +              "turretTakedowns": 3,
      +              "turretsLost": 1,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 18,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": true
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 4,
      +              "baitPings": 0,
      +              "baronKills": 1,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 31163,
      +              "champLevel": 24,
      +              "championId": 18,
      +              "championName": "Tristana",
      +              "championTransform": 0,
      +              "commandPings": 7,
      +              "consumablesPurchased": 0,
      +              "damageDealtToBuildings": 14675,
      +              "damageDealtToObjectives": 73011,
      +              "damageDealtToTurrets": 14675,
      +              "damageSelfMitigated": 23921,
      +              "dangerPings": 0,
      +              "deaths": 11,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 2,
      +              "dragonKills": 2,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 0,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": true,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": true,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 22278,
      +              "goldSpent": 19200,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 1,
      +              "inhibitorTakedowns": 1,
      +              "inhibitorsLost": 0,
      +              "item0": 6672,
      +              "item1": 3094,
      +              "item2": 3046,
      +              "item3": 3031,
      +              "item4": 3072,
      +              "item5": 3036,
      +              "item6": 3513,
      +              "itemsPurchased": 19,
      +              "killingSprees": 5,
      +              "kills": 17,
      +              "lane": "MIDDLE",
      +              "largestCriticalStrike": 1175,
      +              "largestKillingSpree": 7,
      +              "largestMultiKill": 2,
      +              "longestTimeSpentLiving": 185,
      +              "magicDamageDealt": 22089,
      +              "magicDamageDealtToChampions": 2969,
      +              "magicDamageTaken": 21412,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 24,
      +              "nexusKills": 0,
      +              "nexusLost": 0,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 4,
      +              "participantId": 7,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5002,
      +                      "flex": 5008,
      +                      "offense": 5005
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 9923,
      +                                  "var1": 82,
      +                                  "var2": 91,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8139,
      +                                  "var1": 1786,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8138,
      +                                  "var1": 18,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8135,
      +                                  "var1": 550,
      +                                  "var2": 5,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8014,
      +                                  "var1": 2094,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9103,
      +                                  "var1": 13,
      +                                  "var2": 20,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8000
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 252416,
      +              "physicalDamageDealtToChampions": 52652,
      +              "physicalDamageTaken": 12674,
      +              "profileIcon": 3225,
      +              "pushPings": 0,
      +              "puuid": "r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "DUO",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 91,
      +              "spell2Casts": 63,
      +              "spell3Casts": 116,
      +              "spell4Casts": 11,
      +              "summoner1Casts": 10,
      +              "summoner1Id": 4,
      +              "summoner2Casts": 12,
      +              "summoner2Id": 6,
      +              "summonerId": "xziW6_4V-ILrHKrmgmKoB0CI3MbYRbQEC5t14KcK5F8Ib8Q",
      +              "summonerLevel": 265,
      +              "summonerName": "Sky csc",
      +              "teamEarlySurrendered": false,
      +              "teamId": 200,
      +              "teamPosition": "",
      +              "timeCCingOthers": 8,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 289702,
      +              "totalDamageDealtToChampions": 58874,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 35086,
      +              "totalHeal": 11279,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 145,
      +              "totalTimeCCDealt": 38,
      +              "totalTimeSpentDead": 289,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 15196,
      +              "trueDamageDealtToChampions": 3252,
      +              "trueDamageTaken": 999,
      +              "turretKills": 4,
      +              "turretTakedowns": 4,
      +              "turretsLost": 1,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 24,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": true
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 11,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 5,
      +              "champExperience": 32262,
      +              "champLevel": 25,
      +              "championId": 56,
      +              "championName": "Nocturne",
      +              "championTransform": 0,
      +              "commandPings": 0,
      +              "consumablesPurchased": 0,
      +              "damageDealtToBuildings": 1532,
      +              "damageDealtToObjectives": 1532,
      +              "damageDealtToTurrets": 1532,
      +              "damageSelfMitigated": 34670,
      +              "dangerPings": 0,
      +              "deaths": 5,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 0,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 6,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 1,
      +              "goldEarned": 16845,
      +              "goldSpent": 14900,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 0,
      +              "inhibitorsLost": 0,
      +              "item0": 6692,
      +              "item1": 3814,
      +              "item2": 3111,
      +              "item3": 3153,
      +              "item4": 3156,
      +              "item5": 3035,
      +              "item6": 3363,
      +              "itemsPurchased": 35,
      +              "killingSprees": 2,
      +              "kills": 10,
      +              "lane": "BOTTOM",
      +              "largestCriticalStrike": 0,
      +              "largestKillingSpree": 5,
      +              "largestMultiKill": 1,
      +              "longestTimeSpentLiving": 396,
      +              "magicDamageDealt": 4615,
      +              "magicDamageDealtToChampions": 2421,
      +              "magicDamageTaken": 17942,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 8,
      +              "nexusKills": 0,
      +              "nexusLost": 0,
      +              "nexusTakedowns": 0,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 0,
      +              "participantId": 8,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5001,
      +                      "flex": 5008,
      +                      "offense": 5005
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8008,
      +                                  "var1": 25,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9111,
      +                                  "var1": 2224,
      +                                  "var2": 420,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9104,
      +                                  "var1": 10,
      +                                  "var2": 40,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8014,
      +                                  "var1": 1007,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8000
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8126,
      +                                  "var1": 992,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8106,
      +                                  "var1": 5,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 95304,
      +              "physicalDamageDealtToChampions": 31973,
      +              "physicalDamageTaken": 15118,
      +              "profileIcon": 4571,
      +              "pushPings": 0,
      +              "puuid": "exUzRLgUAFLgLgx5BVzvIk6dp5wNtelRnmXAJzebgGG49D1_z3D4E3znqmusQ624dnm_LFil_foCvQ",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "SOLO",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 152,
      +              "spell2Casts": 63,
      +              "spell3Casts": 34,
      +              "spell4Casts": 29,
      +              "summoner1Casts": 7,
      +              "summoner1Id": 6,
      +              "summoner2Casts": 7,
      +              "summoner2Id": 4,
      +              "summonerId": "Y6dz-cfqfkszEhBcdc-hniNLQ7Ewv1Zjcb7iY1NHzkt5gQI",
      +              "summonerLevel": 571,
      +              "summonerName": "DYMripper",
      +              "teamEarlySurrendered": false,
      +              "teamId": 200,
      +              "teamPosition": "",
      +              "timeCCingOthers": 237,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 101777,
      +              "totalDamageDealtToChampions": 35459,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 33812,
      +              "totalHeal": 7398,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 69,
      +              "totalTimeCCDealt": 508,
      +              "totalTimeSpentDead": 124,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 1858,
      +              "trueDamageDealtToChampions": 1064,
      +              "trueDamageTaken": 751,
      +              "turretKills": 1,
      +              "turretTakedowns": 1,
      +              "turretsLost": 1,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 16,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": true
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 0,
      +              "assists": 7,
      +              "baitPings": 0,
      +              "baronKills": 0,
      +              "basicPings": 0,
      +              "bountyLevel": 3,
      +              "champExperience": 31776,
      +              "champLevel": 25,
      +              "championId": 39,
      +              "championName": "Irelia",
      +              "championTransform": 0,
      +              "commandPings": 1,
      +              "consumablesPurchased": 3,
      +              "damageDealtToBuildings": 1762,
      +              "damageDealtToObjectives": 27329,
      +              "damageDealtToTurrets": 1762,
      +              "damageSelfMitigated": 42941,
      +              "dangerPings": 0,
      +              "deaths": 16,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 2,
      +              "dragonKills": 1,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 6,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": false,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 15661,
      +              "goldSpent": 14670,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 0,
      +              "inhibitorTakedowns": 1,
      +              "inhibitorsLost": 0,
      +              "item0": 6333,
      +              "item1": 3009,
      +              "item2": 3074,
      +              "item3": 6632,
      +              "item4": 6609,
      +              "item5": 1036,
      +              "item6": 3340,
      +              "itemsPurchased": 30,
      +              "killingSprees": 2,
      +              "kills": 8,
      +              "lane": "TOP",
      +              "largestCriticalStrike": 0,
      +              "largestKillingSpree": 3,
      +              "largestMultiKill": 2,
      +              "longestTimeSpentLiving": 111,
      +              "magicDamageDealt": 25351,
      +              "magicDamageDealtToChampions": 6423,
      +              "magicDamageTaken": 14193,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 22,
      +              "nexusKills": 1,
      +              "nexusLost": 0,
      +              "nexusTakedowns": 1,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 1,
      +              "participantId": 9,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5002,
      +                      "flex": 5008,
      +                      "offense": 5005
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8010,
      +                                  "var1": 601,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9111,
      +                                  "var1": 1348,
      +                                  "var2": 300,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 9104,
      +                                  "var1": 14,
      +                                  "var2": 30,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8299,
      +                                  "var1": 1284,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8000
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8451,
      +                                  "var1": 240,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8446,
      +                                  "var1": 561,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8400
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 116449,
      +              "physicalDamageDealtToChampions": 18761,
      +              "physicalDamageTaken": 27089,
      +              "profileIcon": 3886,
      +              "pushPings": 0,
      +              "puuid": "UdEiY5yUbUAcN6skV5BEWXYQbrbhug1qyYyuIXwAY0oKhyRUVpFbo18glp8uJ9pH50QxHQYI-7RgCA",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "SOLO",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 168,
      +              "spell2Casts": 47,
      +              "spell3Casts": 99,
      +              "spell4Casts": 12,
      +              "summoner1Casts": 11,
      +              "summoner1Id": 4,
      +              "summoner2Casts": 9,
      +              "summoner2Id": 6,
      +              "summonerId": "k2gJlXbRkUy_3yq68d0fWhYwexDeGnM7M65qmANpP56R0nI",
      +              "summonerLevel": 252,
      +              "summonerName": "Hei Feng Lii",
      +              "teamEarlySurrendered": false,
      +              "teamId": 200,
      +              "teamPosition": "",
      +              "timeCCingOthers": 11,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 141801,
      +              "totalDamageDealtToChampions": 25185,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 45476,
      +              "totalHeal": 12537,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 83,
      +              "totalTimeCCDealt": 60,
      +              "totalTimeSpentDead": 384,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 0,
      +              "trueDamageDealtToChampions": 0,
      +              "trueDamageTaken": 4194,
      +              "turretKills": 1,
      +              "turretTakedowns": 1,
      +              "turretsLost": 1,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 17,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": true
      +          },
      +          {
      +              "allInPings": 0,
      +              "assistMePings": 1,
      +              "assists": 10,
      +              "baitPings": 0,
      +              "baronKills": 1,
      +              "basicPings": 0,
      +              "bountyLevel": 0,
      +              "champExperience": 31010,
      +              "champLevel": 24,
      +              "championId": 90,
      +              "championName": "Malzahar",
      +              "championTransform": 0,
      +              "commandPings": 2,
      +              "consumablesPurchased": 1,
      +              "damageDealtToBuildings": 9294,
      +              "damageDealtToObjectives": 84387,
      +              "damageDealtToTurrets": 9294,
      +              "damageSelfMitigated": 16005,
      +              "dangerPings": 0,
      +              "deaths": 7,
      +              "detectorWardsPlaced": 0,
      +              "doubleKills": 0,
      +              "dragonKills": 0,
      +              "eligibleForProgression": true,
      +              "enemyMissingPings": 3,
      +              "enemyVisionPings": 0,
      +              "firstBloodAssist": true,
      +              "firstBloodKill": false,
      +              "firstTowerAssist": false,
      +              "firstTowerKill": false,
      +              "gameEndedInEarlySurrender": false,
      +              "gameEndedInSurrender": false,
      +              "getBackPings": 0,
      +              "goldEarned": 16302,
      +              "goldSpent": 14850,
      +              "holdPings": 0,
      +              "individualPosition": "Invalid",
      +              "inhibitorKills": 1,
      +              "inhibitorTakedowns": 1,
      +              "inhibitorsLost": 0,
      +              "item0": 6653,
      +              "item1": 3020,
      +              "item2": 4637,
      +              "item3": 4645,
      +              "item4": 3089,
      +              "item5": 1011,
      +              "item6": 3340,
      +              "itemsPurchased": 19,
      +              "killingSprees": 0,
      +              "kills": 3,
      +              "lane": "MIDDLE",
      +              "largestCriticalStrike": 0,
      +              "largestKillingSpree": 0,
      +              "largestMultiKill": 1,
      +              "longestTimeSpentLiving": 354,
      +              "magicDamageDealt": 214474,
      +              "magicDamageDealtToChampions": 27561,
      +              "magicDamageTaken": 9883,
      +              "needVisionPings": 0,
      +              "neutralMinionsKilled": 24,
      +              "nexusKills": 0,
      +              "nexusLost": 0,
      +              "nexusTakedowns": 1,
      +              "objectivesStolen": 0,
      +              "objectivesStolenAssists": 0,
      +              "onMyWayPings": 0,
      +              "participantId": 10,
      +              "pentaKills": 0,
      +              "perks": {
      +                  "statPerks": {
      +                      "defense": 5003,
      +                      "flex": 5008,
      +                      "offense": 5008
      +                  },
      +                  "styles": [
      +                      {
      +                          "description": "primaryStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8214,
      +                                  "var1": 2116,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8224,
      +                                  "var1": 797,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8210,
      +                                  "var1": 1,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8237,
      +                                  "var1": 723,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8200
      +                      },
      +                      {
      +                          "description": "subStyle",
      +                          "selections": [
      +                              {
      +                                  "perk": 8105,
      +                                  "var1": 13,
      +                                  "var2": 5,
      +                                  "var3": 0
      +                              },
      +                              {
      +                                  "perk": 8126,
      +                                  "var1": 834,
      +                                  "var2": 0,
      +                                  "var3": 0
      +                              }
      +                          ],
      +                          "style": 8100
      +                      }
      +                  ]
      +              },
      +              "physicalDamageDealt": 6594,
      +              "physicalDamageDealtToChampions": 438,
      +              "physicalDamageTaken": 12834,
      +              "profileIcon": 782,
      +              "pushPings": 0,
      +              "puuid": "UBzXAY4_3Dmc5ZiI5hnSTDAH_ZCIwMUvXcSZNbJSDdBgu08fj33GSstvEjTSt9LPz6d0MudoaL-27w",
      +              "quadraKills": 0,
      +              "riotIdName": "",
      +              "riotIdTagline": "",
      +              "role": "SUPPORT",
      +              "sightWardsBoughtInGame": 0,
      +              "spell1Casts": 311,
      +              "spell2Casts": 371,
      +              "spell3Casts": 155,
      +              "spell4Casts": 9,
      +              "summoner1Casts": 7,
      +              "summoner1Id": 4,
      +              "summoner2Casts": 14,
      +              "summoner2Id": 6,
      +              "summonerId": "_JsJ9_tvuIRm60mcv_bITpjs_iNllhF0h7IxW8pPQUv2kcg",
      +              "summonerLevel": 194,
      +              "summonerName": "Hirobb",
      +              "teamEarlySurrendered": false,
      +              "teamId": 200,
      +              "teamPosition": "",
      +              "timeCCingOthers": 71,
      +              "timePlayed": 1256,
      +              "totalDamageDealt": 222168,
      +              "totalDamageDealtToChampions": 28695,
      +              "totalDamageShieldedOnTeammates": 0,
      +              "totalDamageTaken": 24183,
      +              "totalHeal": 2085,
      +              "totalHealsOnTeammates": 0,
      +              "totalMinionsKilled": 121,
      +              "totalTimeCCDealt": 388,
      +              "totalTimeSpentDead": 191,
      +              "totalUnitsHealed": 1,
      +              "tripleKills": 0,
      +              "trueDamageDealt": 1099,
      +              "trueDamageDealtToChampions": 695,
      +              "trueDamageTaken": 1466,
      +              "turretKills": 2,
      +              "turretTakedowns": 2,
      +              "turretsLost": 1,
      +              "unrealKills": 0,
      +              "visionClearedPings": 0,
      +              "visionScore": 18,
      +              "visionWardsBoughtInGame": 0,
      +              "wardsKilled": 0,
      +              "wardsPlaced": 0,
      +              "win": true
      +          }
      +      ],
      +      "platformId": "EUW1",
      +      "queueId": 900,
      +      "teams": [
      +          {
      +              "bans": [],
      +              "objectives": {
      +                  "baron": {
      +                      "first": false,
      +                      "kills": 0
      +                  },
      +                  "champion": {
      +                      "first": false,
      +                      "kills": 43
      +                  },
      +                  "dragon": {
      +                      "first": true,
      +                      "kills": 3
      +                  },
      +                  "inhibitor": {
      +                      "first": false,
      +                      "kills": 0
      +                  },
      +                  "riftHerald": {
      +                      "first": false,
      +                      "kills": 0
      +                  },
      +                  "tower": {
      +                      "first": false,
      +                      "kills": 1
      +                  }
      +              },
      +              "teamId": 100,
      +              "win": false
      +          },
      +          {
      +              "bans": [],
      +              "objectives": {
      +                  "baron": {
      +                      "first": true,
      +                      "kills": 2
      +                  },
      +                  "champion": {
      +                      "first": true,
      +                      "kills": 44
      +                  },
      +                  "dragon": {
      +                      "first": false,
      +                      "kills": 3
      +                  },
      +                  "inhibitor": {
      +                      "first": true,
      +                      "kills": 3
      +                  },
      +                  "riftHerald": {
      +                      "first": false,
      +                      "kills": 0
      +                  },
      +                  "tower": {
      +                      "first": true,
      +                      "kills": 11
      +                  }
      +              },
      +              "teamId": 200,
      +              "win": true
      +          }
      +      ],
      +      "tournamentCode": ""
      +  }
      +}
       
      +

    diff --git a/docs/apiserver/toc.html b/docs/apiserver/toc.html index e08987d..b0c62c6 100644 --- a/docs/apiserver/toc.html +++ b/docs/apiserver/toc.html @@ -56,22 +56,6 @@ -
  • - - OSL_Server.Data - - - -
  • OSL_Server.DataLoader.CDragon @@ -148,6 +132,38 @@
  • +
  • + + OSL_Server.DataLoader.WebApiRiot + + + +
  • OSL_Server.DataReciveClient @@ -200,6 +216,50 @@
  • +
  • + + OSL_Server.DataReciveClient.Processing.EndGame + + + +
  • +
  • + + OSL_Server.DataReciveClient.Processing.InGame + + + +
  • OSL_Server.Download @@ -235,139 +295,291 @@
  • - ChampSelectPage + ConfigPage
  • - ChampSelectPage.TextValueOverlayView1 + ConfigPage.ConfigOverlayText
  • - ChampSelectPage.TextValueOverlayView2 + EndGameTestPage
  • - ChampSelectPage.TextValueOverlayView3 + ErrorModel
  • - ChampSelectPage.TextValueOverlayView4 + Index
  • - ChampSelectView1Page + RecapLinkPage
  • - ChampSelectView1Page.FormatingData + WaitingGamePage
  • + + +
  • + + OSL_Server.Pages.ChampSelect + + + +
  • +
  • + + OSL_Server.Pages.EndGame + + + +
  • +
  • + + OSL_Server.Pages.InGame + + + +
  • +
  • + + OSL_Server.Pages.Runes + + +
  • - OSL_Server.PagesManager + OSL_Server.Pages.WaitingGameStart diff --git a/docs/clientdoc/intro.html b/docs/clientdoc/intro.html index e8fa252..f4a2020 100644 --- a/docs/clientdoc/intro.html +++ b/docs/clientdoc/intro.html @@ -98,7 +98,7 @@
    Caution

    Documentation in progress


    -

    Download last release : First Release v0.3.0-alpha

    +

    Download last release : Release v1.0.0

    Not forget run OSL-Server.exe, before run OSL-Client.exe

    Configuration/configHost.json : Configuration of Live Events API port

    Configuration/configRiot.json : Name of windows process used by League of Legends

    diff --git a/docs/index.html b/docs/index.html index 0d1522a..a9e4d4a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -86,12 +86,13 @@

    Search Results for

    -

    OSL : Overlay Spectator Live

    +

    OSL : Overlay Spectator Live

    work-in-progress stability language .Net-6.0 +framework platform license LoL1 @@ -100,9 +101,52 @@

    OSL : Overlay Spectator Live riot1 riot2

    -

    Here you'll find the OSL-Client and OSL-Server for the Overlay Spectator Live software suit. -This project permite to have an overlay for display informattion in Waiting a Game, Champ Select, Waiting Game Start, In Game and End Game in streamings.

    -

    Applications architecture

    +

    This project allows you to display an overlay with additional information for your League of Legends games

    +

    Applications use various APIs to collect information about the game, champions, players, .....

    +

    Features

    +

    Champ Select :

    +
      +
    • 4 view
    • +
    • Champ ban/select
    • +
    • Summoners names
    • +
    • Team name
    • +
    • Number of victory/lose teams
    • +
    • Timer ban/select/waiting
    • +
    • Summoners Spell
    • +
    +

    In Game :

    +

    With riot overlay :

    +
      +
    • 3 view
    • +
    • Team/Dragon/Baron frame
    • +
    • Team name
    • +
    • Number of victory/lose teams
    • +
    • Frame for video/logo/player picture ...
    • +
    +

    End Game :

    +
      +
    • 3 view
    • +
    • Team name
    • +
    • Team score
    • +
    • Team win loose
    • +
    • Damage to champion
    • +
    • Bans
    • +
    • KDA/Gold/Tower/Dragon/Elder Dragon/Herald/Baron
    • +
    • Gold Diff
    • +
    +

    Runes :

    +
      +
    • 7 view
    • +
    • Top
    • +
    • Jungle
    • +
    • Mid
    • +
    • Adc
    • +
    • Support
    • +
    • Adc and support
    • +
    • All
    • +
    +
    +

    Applications architecture

    For more information, please refer to these different documentations.

      diff --git a/docs/index.json b/docs/index.json index b16b4cc..4064c64 100644 --- a/docs/index.json +++ b/docs/index.json @@ -7,7 +7,7 @@ "apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html": { "href": "apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html", "title": "Class AsyncClient | OSL", - "keywords": "Class AsyncClient Asynchrone client Inheritance System.Object AsyncClient Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.Communication.OSLServer Assembly : OSL-Client.dll Syntax public class AsyncClient Methods | Improve this Doc View Source StartClient(String) Run connexion for connect to server Declaration public static bool StartClient(string data) Parameters Type Name Description System.String data data recive Returns Type Description System.Boolean Connexion are enabled" + "keywords": "Class AsyncClient Asynchrone client Inheritance System.Object AsyncClient Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.Communication.OSLServer Assembly : OSL-Client.dll Syntax public class AsyncClient Fields | Improve this Doc View Source oslServerSocket Declaration public static Socket oslServerSocket Field Value Type Description System.Net.Sockets.Socket Methods | Improve this Doc View Source CloseClient() Declaration public static bool CloseClient() Returns Type Description System.Boolean | Improve this Doc View Source Receive() Declaration public static void Receive() | Improve this Doc View Source Receive(Socket) Receive Declaration public static void Receive(Socket client) Parameters Type Name Description System.Net.Sockets.Socket client Socket client | Improve this Doc View Source Send(Socket, String) Send Declaration public static void Send(Socket client, string data) Parameters Type Name Description System.Net.Sockets.Socket client Socket client System.String data data to send | Improve this Doc View Source Send(String) Declaration public static void Send(string data) Parameters Type Name Description System.String data | Improve this Doc View Source StartClient(String) Declaration public static bool StartClient(string data) Parameters Type Name Description System.String data Returns Type Description System.Boolean" }, "apiclient/OSL_Client.Communication.OSLServer.html": { "href": "apiclient/OSL_Client.Communication.OSLServer.html", @@ -99,60 +99,60 @@ "title": "Class LaunchChecker | OSL", "keywords": "Class LaunchChecker Check all programm or what is launch in relation of RIOT Inheritance System.Object LaunchChecker Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp Assembly : OSL-Client.dll Syntax public class LaunchChecker Methods | Improve this Doc View Source LoLLauncherCheck() Check if League Of Legends client is launch Declaration public static bool LoLLauncherCheck() Returns Type Description System.Boolean" }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html", - "title": "Class AppStateController | OSL", - "keywords": "Class AppStateController Inheritance System.Object AppStateController Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public static class AppStateController Methods | Improve this Doc View Source LoadOffsetConfig() Declaration public static void LoadOffsetConfig() | Improve this Doc View Source LoadOffsets() Declaration public static void LoadOffsets()" + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html", + "title": "Class CDragonChampion | OSL", + "keywords": "Class CDragonChampion Inheritance System.Object CDragonChampion Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO Assembly : OSL-Client.dll Syntax public class CDragonChampion Properties | Improve this Doc View Source Alias Declaration [JsonPropertyName(\"alias\")] public string Alias { get; set; } Property Value Type Description System.String | Improve this Doc View Source All Declaration public static HashSet All { get; set; } Property Value Type Description System.Collections.Generic.HashSet < CDragonChampion > | Improve this Doc View Source ID Declaration [JsonPropertyName(\"id\")] public int ID { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source LoadingImg Declaration [JsonPropertyName(\"loadingImg\")] public string LoadingImg { get; set; } Property Value Type Description System.String | Improve this Doc View Source Name Declaration [JsonPropertyName(\"name\")] public string Name { get; set; } Property Value Type Description System.String | Improve this Doc View Source SplashCenteredImg Declaration [JsonPropertyName(\"splashCenteredImg\")] public string SplashCenteredImg { get; set; } Property Value Type Description System.String | Improve this Doc View Source SplashImg Declaration [JsonPropertyName(\"splashImg\")] public string SplashImg { get; set; } Property Value Type Description System.String | Improve this Doc View Source SquareImg Declaration [JsonPropertyName(\"squareImg\")] public string SquareImg { get; set; } Property Value Type Description System.String" }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html", - "title": "Class ByteUtils | OSL", - "keywords": "Class ByteUtils Inheritance System.Object ByteUtils Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public static class ByteUtils Methods | Improve this Doc View Source DecodeAscii(Byte[]) Declaration public static string DecodeAscii(this byte[] buffer) Parameters Type Name Description System.Byte [] buffer Returns Type Description System.String | Improve this Doc View Source GetSubArray(Byte[], Int32, Int32) Declaration public static byte[] GetSubArray(this byte[] source, int offset, int size) Parameters Type Name Description System.Byte [] source System.Int32 offset System.Int32 size Returns Type Description System.Byte [] | Improve this Doc View Source IsASCII(Byte[]) Declaration public static bool IsASCII(this byte[] input) Parameters Type Name Description System.Byte [] input Returns Type Description System.Boolean | Improve this Doc View Source ToFloat(Byte[], Int32) Declaration public static float ToFloat(this byte[] input, int offset = 0) Parameters Type Name Description System.Byte [] input System.Int32 offset Returns Type Description System.Single | Improve this Doc View Source ToInt(Byte[], Int32) Declaration public static int ToInt(this byte[] source, int offset = 0) Parameters Type Name Description System.Byte [] source System.Int32 offset Returns Type Description System.Int32 | Improve this Doc View Source ToShort(Byte[], Int32) Declaration public static short ToShort(this byte[] source, int offset = 0) Parameters Type Name Description System.Byte [] source System.Int32 offset Returns Type Description System.Int16 | Improve this Doc View Source ToUInt(Byte[], Int32) Declaration public static uint ToUInt(this byte[] source, int offset = 0) Parameters Type Name Description System.Byte [] source System.Int32 offset Returns Type Description System.UInt32 | Improve this Doc View Source Write(Byte[], Byte[]) Declaration public static void Write(this byte[] dest, byte[] input) Parameters Type Name Description System.Byte [] dest System.Byte [] input | Improve this Doc View Source Write(Byte[], Int32, Byte[]) Declaration public static void Write(this byte[] dest, int offset, byte[] input) Parameters Type Name Description System.Byte [] dest System.Int32 offset System.Byte [] input | Improve this Doc View Source Write(Char[], Byte[]) Declaration public static void Write(this char[] dest, byte[] input) Parameters Type Name Description System.Char [] dest System.Byte [] input | Improve this Doc View Source Write(Char[], Int32, Byte[]) Declaration public static void Write(this char[] dest, int offset, byte[] input) Parameters Type Name Description System.Char [] dest System.Int32 offset System.Byte [] input" - }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html", + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html", "title": "Class Champion | OSL", - "keywords": "Class Champion Inheritance System.Object Champion Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class Champion Fields | Improve this Doc View Source Champions Declaration public static List Champions Field Value Type Description System.Collections.Generic.List < Champion > | Improve this Doc View Source id Declaration public string id Field Value Type Description System.String | Improve this Doc View Source key Declaration public int key Field Value Type Description System.Int32 | Improve this Doc View Source loadingImg Declaration public string loadingImg Field Value Type Description System.String | Improve this Doc View Source name Declaration public string name Field Value Type Description System.String | Improve this Doc View Source splashCenteredImg Declaration public string splashCenteredImg Field Value Type Description System.String | Improve this Doc View Source splashImg Declaration public string splashImg Field Value Type Description System.String | Improve this Doc View Source squareImg Declaration public string squareImg Field Value Type Description System.String" + "keywords": "Class Champion Inheritance System.Object Champion Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO Assembly : OSL-Client.dll Syntax public class Champion Fields | Improve this Doc View Source id Declaration public string id Field Value Type Description System.String | Improve this Doc View Source key Declaration public int key Field Value Type Description System.Int32 | Improve this Doc View Source loadingImg Declaration public string loadingImg Field Value Type Description System.String | Improve this Doc View Source name Declaration public string name Field Value Type Description System.String | Improve this Doc View Source splashCenteredImg Declaration public string splashCenteredImg Field Value Type Description System.String | Improve this Doc View Source splashImg Declaration public string splashImg Field Value Type Description System.String | Improve this Doc View Source squareImg Declaration public string squareImg Field Value Type Description System.String" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.html", + "title": "Namespace OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO | OSL", + "keywords": "Namespace OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO Classes CDragonChampion Champion" }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html", + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html", "title": "Class ChampionLevel | OSL", - "keywords": "Class ChampionLevel Inheritance System.Object ChampionLevel Implements System.IComparable Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class ChampionLevel : IComparable Constructors | Improve this Doc View Source ChampionLevel(Int32, Single) Declaration public ChampionLevel(int level, float exp) Parameters Type Name Description System.Int32 level System.Single exp Fields | Improve this Doc View Source exp Declaration public float exp Field Value Type Description System.Single | Improve this Doc View Source level Declaration public int level Field Value Type Description System.Int32 | Improve this Doc View Source Levels Declaration public static List Levels Field Value Type Description System.Collections.Generic.List < ChampionLevel > Methods | Improve this Doc View Source CompareTo(Object) Declaration public int CompareTo(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Int32 | Improve this Doc View Source EXPToLevel(Single) Declaration public static int EXPToLevel(float exp) Parameters Type Name Description System.Single exp Returns Type Description System.Int32 Implements System.IComparable" + "keywords": "Class ChampionLevel Inheritance System.Object ChampionLevel Implements System.IComparable Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT Assembly : OSL-Client.dll Syntax public class ChampionLevel : IComparable Constructors | Improve this Doc View Source ChampionLevel(Int32, Single) Declaration public ChampionLevel(int level, float exp) Parameters Type Name Description System.Int32 level System.Single exp Fields | Improve this Doc View Source exp Declaration public float exp Field Value Type Description System.Single | Improve this Doc View Source level Declaration public int level Field Value Type Description System.Int32 | Improve this Doc View Source Levels Declaration public static List Levels Field Value Type Description System.Collections.Generic.List < ChampionLevel > Methods | Improve this Doc View Source CompareTo(Object) Declaration public int CompareTo(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Int32 | Improve this Doc View Source EXPToLevel(Single) Declaration public static int EXPToLevel(float exp) Parameters Type Name Description System.Single exp Returns Type Description System.Int32 Implements System.IComparable" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.html", + "title": "Namespace OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT | OSL", + "keywords": "Namespace OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT Classes ChampionLevel" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html", + "title": "Class ByteUtils | OSL", + "keywords": "Class ByteUtils Inheritance System.Object ByteUtils Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Common.Utils Assembly : OSL-Client.dll Syntax public static class ByteUtils Methods | Improve this Doc View Source DecodeAscii(Byte[]) Declaration public static string DecodeAscii(this byte[] buffer) Parameters Type Name Description System.Byte [] buffer Returns Type Description System.String | Improve this Doc View Source GetSubArray(Byte[], Int32, Int32) Declaration public static byte[] GetSubArray(this byte[] source, int offset, int size) Parameters Type Name Description System.Byte [] source System.Int32 offset System.Int32 size Returns Type Description System.Byte [] | Improve this Doc View Source IsASCII(Byte[]) Declaration public static bool IsASCII(this byte[] input) Parameters Type Name Description System.Byte [] input Returns Type Description System.Boolean | Improve this Doc View Source ToFloat(Byte[], Int32) Declaration public static float ToFloat(this byte[] input, int offset = 0) Parameters Type Name Description System.Byte [] input System.Int32 offset Returns Type Description System.Single | Improve this Doc View Source ToInt(Byte[], Int32) Declaration public static int ToInt(this byte[] source, int offset = 0) Parameters Type Name Description System.Byte [] source System.Int32 offset Returns Type Description System.Int32 | Improve this Doc View Source ToShort(Byte[], Int32) Declaration public static short ToShort(this byte[] source, int offset = 0) Parameters Type Name Description System.Byte [] source System.Int32 offset Returns Type Description System.Int16 | Improve this Doc View Source ToUInt(Byte[], Int32) Declaration public static uint ToUInt(this byte[] source, int offset = 0) Parameters Type Name Description System.Byte [] source System.Int32 offset Returns Type Description System.UInt32 | Improve this Doc View Source Write(Byte[], Byte[]) Declaration public static void Write(this byte[] dest, byte[] input) Parameters Type Name Description System.Byte [] dest System.Byte [] input | Improve this Doc View Source Write(Byte[], Int32, Byte[]) Declaration public static void Write(this byte[] dest, int offset, byte[] input) Parameters Type Name Description System.Byte [] dest System.Int32 offset System.Byte [] input | Improve this Doc View Source Write(Char[], Byte[]) Declaration public static void Write(this char[] dest, byte[] input) Parameters Type Name Description System.Char [] dest System.Byte [] input | Improve this Doc View Source Write(Char[], Int32, Byte[]) Declaration public static void Write(this char[] dest, int offset, byte[] input) Parameters Type Name Description System.Char [] dest System.Int32 offset System.Byte [] input" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html", + "title": "Class HexStringJsonConverter | OSL", + "keywords": "Class HexStringJsonConverter Inheritance System.Object Newtonsoft.Json.JsonConverter HexStringJsonConverter Inherited Members Newtonsoft.Json.JsonConverter.CanRead Newtonsoft.Json.JsonConverter.CanWrite System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Common.Utils Assembly : OSL-Client.dll Syntax public sealed class HexStringJsonConverter : JsonConverter Methods | Improve this Doc View Source CanConvert(Type) Declaration public override bool CanConvert(Type objectType) Parameters Type Name Description System.Type objectType Returns Type Description System.Boolean Overrides Newtonsoft.Json.JsonConverter.CanConvert(System.Type) | Improve this Doc View Source ReadJson(JsonReader, Type, Object, JsonSerializer) Declaration public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) Parameters Type Name Description Newtonsoft.Json.JsonReader reader System.Type objectType System.Object existingValue Newtonsoft.Json.JsonSerializer serializer Returns Type Description System.Object Overrides Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, System.Object, Newtonsoft.Json.JsonSerializer) | Improve this Doc View Source WriteJson(JsonWriter, Object, JsonSerializer) Declaration public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) Parameters Type Name Description Newtonsoft.Json.JsonWriter writer System.Object value Newtonsoft.Json.JsonSerializer serializer Overrides Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, System.Object, Newtonsoft.Json.JsonSerializer)" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.html", + "title": "Namespace OSL_Client.RiotApp.MemoryProcessing.Common.Utils | OSL", + "keywords": "Namespace OSL_Client.RiotApp.MemoryProcessing.Common.Utils Classes ByteUtils HexStringJsonConverter" }, "apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.html": { "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.html", "title": "Class FarsightController | OSL", - "keywords": "Class FarsightController Inheritance System.Object FarsightController Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class FarsightController Constructors | Improve this Doc View Source FarsightController() Declaration public FarsightController() Fields | Improve this Doc View Source BlacklistedObjectNames Declaration public static List BlacklistedObjectNames Field Value Type Description System.Collections.Generic.List < System.String > | Improve this Doc View Source BlacklistedObjects Declaration public static List BlacklistedObjects Field Value Type Description System.Collections.Generic.List < System.Int32 > | Improve this Doc View Source Champions Declaration public static List Champions Field Value Type Description System.Collections.Generic.List < System.String > | Improve this Doc View Source GameOffsets Declaration public static FarsightController.Offsets GameOffsets Field Value Type Description FarsightController.Offsets | Improve this Doc View Source ObjectOffsets Declaration public static GameObject.Offsets ObjectOffsets Field Value Type Description GameObject.Offsets | Improve this Doc View Source ShouldRun Declaration public static bool ShouldRun Field Value Type Description System.Boolean Methods | Improve this Doc View Source Connect(Process) Declaration public void Connect(Process p) Parameters Type Name Description System.Diagnostics.Process p | Improve this Doc View Source CreateSnapshot(Double) Declaration public static Snapshot CreateSnapshot(double gameTime = 0) Parameters Type Name Description System.Double gameTime Returns Type Description Snapshot | Improve this Doc View Source ReadObjects(Snapshot) Declaration public static void ReadObjects(Snapshot snap) Parameters Type Name Description Snapshot snap" + "keywords": "Class FarsightController Inheritance System.Object FarsightController Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class FarsightController Constructors | Improve this Doc View Source FarsightController() Declaration public FarsightController() Fields | Improve this Doc View Source BlacklistedObjectNames Declaration public List BlacklistedObjectNames Field Value Type Description System.Collections.Generic.List < System.String > | Improve this Doc View Source BlacklistedObjects Declaration public List BlacklistedObjects Field Value Type Description System.Collections.Generic.List < System.Int32 > | Improve this Doc View Source Champions Declaration public static List Champions Field Value Type Description System.Collections.Generic.List < System.String > | Improve this Doc View Source GameOffsets Declaration public static FarsightController.Offsets GameOffsets Field Value Type Description FarsightController.Offsets | Improve this Doc View Source ObjectOffsets Declaration public static GameObject.Offsets ObjectOffsets Field Value Type Description GameObject.Offsets | Improve this Doc View Source ShouldRun Declaration public static bool ShouldRun Field Value Type Description System.Boolean Methods | Improve this Doc View Source Connect(Process) Declaration public void Connect(Process p) Parameters Type Name Description System.Diagnostics.Process p | Improve this Doc View Source CreateSnapshot(Double) Declaration public Snapshot CreateSnapshot(double gameTime = 0) Parameters Type Name Description System.Double gameTime Returns Type Description Snapshot" }, "apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.Offsets.html": { "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.Offsets.html", "title": "Class FarsightController.Offsets | OSL", "keywords": "Class FarsightController.Offsets Inheritance System.Object FarsightController.Offsets Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class Offsets Fields | Improve this Doc View Source Manager Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Manager Field Value Type Description System.Int32 | Improve this Doc View Source MapCount Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapCount Field Value Type Description System.Int32 | Improve this Doc View Source MapNodeNetId Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapNodeNetId Field Value Type Description System.Int32 | Improve this Doc View Source MapNodeObject Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapNodeObject Field Value Type Description System.Int32 | Improve this Doc View Source MapRoot Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapRoot Field Value Type Description System.Int32" }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html", - "title": "Class GameObject | OSL", - "keywords": "Class GameObject Inheritance System.Object GameObject Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class GameObject Fields | Improve this Doc View Source buffDeepSize Declaration public const int buffDeepSize = 4096 Field Value Type Description System.Int32 | Improve this Doc View Source CurrentGold Declaration public float CurrentGold Field Value Type Description System.Single | Improve this Doc View Source EXP Declaration public float EXP Field Value Type Description System.Single | Improve this Doc View Source GoldTotal Declaration public float GoldTotal Field Value Type Description System.Single | Improve this Doc View Source Health Declaration public float Health Field Value Type Description System.Single | Improve this Doc View Source ID Declaration public short ID Field Value Type Description System.Int16 | Improve this Doc View Source Level Declaration public int Level Field Value Type Description System.Int32 | Improve this Doc View Source Mana Declaration public float Mana Field Value Type Description System.Single | Improve this Doc View Source MaxHealth Declaration public float MaxHealth Field Value Type Description System.Single | Improve this Doc View Source MaxMana Declaration public float MaxMana Field Value Type Description System.Single | Improve this Doc View Source Name Declaration public string Name Field Value Type Description System.String | Improve this Doc View Source NetworkID Declaration public int NetworkID Field Value Type Description System.Int32 | Improve this Doc View Source Position Declaration public Vector3 Position Field Value Type Description System.Numerics.Vector3 | Improve this Doc View Source Team Declaration public short Team Field Value Type Description System.Int16 Methods | Improve this Doc View Source IsChampion() Declaration public bool IsChampion() Returns Type Description System.Boolean | Improve this Doc View Source LoadChampFromMemory(Byte[], Int32, Boolean) Declaration public void LoadChampFromMemory(byte[] source, int baseAdr, bool deepLoad = true) Parameters Type Name Description System.Byte [] source System.Int32 baseAdr System.Boolean deepLoad | Improve this Doc View Source LoadFromMemory(Int32, Boolean, Int32) Declaration public void LoadFromMemory(int baseAdr, bool deepLoad = true, int buffSize = 13824) Parameters Type Name Description System.Int32 baseAdr System.Boolean deepLoad System.Int32 buffSize" - }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html", - "title": "Class GameObject.Offsets | OSL", - "keywords": "Class GameObject.Offsets Inheritance System.Object GameObject.Offsets Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class Offsets Fields | Improve this Doc View Source CurrentGold Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int CurrentGold Field Value Type Description System.Int32 | Improve this Doc View Source EXP Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int EXP Field Value Type Description System.Int32 | Improve this Doc View Source GoldTotal Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int GoldTotal Field Value Type Description System.Int32 | Improve this Doc View Source Health Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Health Field Value Type Description System.Int32 | Improve this Doc View Source ID Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ID Field Value Type Description System.Int32 | Improve this Doc View Source ItemInfo Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemInfo Field Value Type Description System.Int32 | Improve this Doc View Source ItemInfoId Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemInfoId Field Value Type Description System.Int32 | Improve this Doc View Source ItemList Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemList Field Value Type Description System.Int32 | Improve this Doc View Source ItemListItem Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemListItem Field Value Type Description System.Int32 | Improve this Doc View Source Mana Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Mana Field Value Type Description System.Int32 | Improve this Doc View Source MaxHealth Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MaxHealth Field Value Type Description System.Int32 | Improve this Doc View Source MaxMana Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MaxMana Field Value Type Description System.Int32 | Improve this Doc View Source Name Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Name Field Value Type Description System.Int32 | Improve this Doc View Source NetworkID Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int NetworkID Field Value Type Description System.Int32 | Improve this Doc View Source Pos Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Pos Field Value Type Description System.Int32 | Improve this Doc View Source SpellBook Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int SpellBook Field Value Type Description System.Int32 | Improve this Doc View Source Team Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Team Field Value Type Description System.Int32" - }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html", - "title": "Class HexStringJsonConverter | OSL", - "keywords": "Class HexStringJsonConverter Inheritance System.Object Newtonsoft.Json.JsonConverter HexStringJsonConverter Inherited Members Newtonsoft.Json.JsonConverter.CanRead Newtonsoft.Json.JsonConverter.CanWrite System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public sealed class HexStringJsonConverter : JsonConverter Methods | Improve this Doc View Source CanConvert(Type) Declaration public override bool CanConvert(Type objectType) Parameters Type Name Description System.Type objectType Returns Type Description System.Boolean Overrides Newtonsoft.Json.JsonConverter.CanConvert(System.Type) | Improve this Doc View Source ReadJson(JsonReader, Type, Object, JsonSerializer) Declaration public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) Parameters Type Name Description Newtonsoft.Json.JsonReader reader System.Type objectType System.Object existingValue Newtonsoft.Json.JsonSerializer serializer Returns Type Description System.Object Overrides Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, System.Object, Newtonsoft.Json.JsonSerializer) | Improve this Doc View Source WriteJson(JsonWriter, Object, JsonSerializer) Declaration public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) Parameters Type Name Description Newtonsoft.Json.JsonWriter writer System.Object value Newtonsoft.Json.JsonSerializer serializer Overrides Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, System.Object, Newtonsoft.Json.JsonSerializer)" - }, "apiclient/OSL_Client.RiotApp.MemoryProcessing.html": { "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.html", "title": "Namespace OSL_Client.RiotApp.MemoryProcessing | OSL", - "keywords": "Namespace OSL_Client.RiotApp.MemoryProcessing Classes AppStateController ByteUtils Champion ChampionLevel FarsightController FarsightController.Offsets GameObject GameObject.Offsets HexStringJsonConverter JSONConfig Memory Offsets Snapshot Structs Memory.MEMORY_BASIC_INFORMATION" - }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html", - "title": "Class JSONConfig | OSL", - "keywords": "Class JSONConfig Inheritance System.Object JSONConfig Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public abstract class JSONConfig Fields | Improve this Doc View Source _fileVersion Declaration protected string _fileVersion Field Value Type Description System.String | Improve this Doc View Source ConfigUpdate Declaration [JsonIgnore] public EventHandler ConfigUpdate Field Value Type Description System.EventHandler Properties | Improve this Doc View Source CurrentVersion Declaration [JsonIgnore] public static string CurrentVersion { get; } Property Value Type Description System.String | Improve this Doc View Source FileVersion Declaration public abstract string FileVersion { get; set; } Property Value Type Description System.String | Improve this Doc View Source Name Declaration [JsonIgnore] public abstract string Name { get; } Property Value Type Description System.String Methods | Improve this Doc View Source GETCurrentVersion() Declaration public abstract string GETCurrentVersion() Returns Type Description System.String | Improve this Doc View Source GETDefaultString() Declaration public abstract string GETDefaultString() Returns Type Description System.String | Improve this Doc View Source GETJson() Declaration public abstract string GETJson() Returns Type Description System.String | Improve this Doc View Source Reload() Declaration public void Reload() | Improve this Doc View Source RevertToDefault() Declaration public abstract void RevertToDefault() | Improve this Doc View Source SerializeIndented(Object) Declaration public string SerializeIndented(object o) Parameters Type Name Description System.Object o Returns Type Description System.String | Improve this Doc View Source UpdateConfigVersion(String, String) Declaration public abstract bool UpdateConfigVersion(string oldVersion, string oldValues) Parameters Type Name Description System.String oldVersion System.String oldValues Returns Type Description System.Boolean | Improve this Doc View Source UpdateFile() Declaration public void UpdateFile() | Improve this Doc View Source UpdateValues(String) Declaration public abstract void UpdateValues(string readValues) Parameters Type Name Description System.String readValues" + "keywords": "Namespace OSL_Client.RiotApp.MemoryProcessing Classes FarsightController FarsightController.Offsets Memory Snapshot Structs Memory.MEMORY_BASIC_INFORMATION" }, "apiclient/OSL_Client.RiotApp.MemoryProcessing.Memory.html": { "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Memory.html", @@ -164,10 +164,20 @@ "title": "Struct Memory.MEMORY_BASIC_INFORMATION | OSL", "keywords": "Struct Memory.MEMORY_BASIC_INFORMATION Inherited Members System.ValueType.Equals(System.Object) System.ValueType.GetHashCode() System.ValueType.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public struct MEMORY_BASIC_INFORMATION Fields | Improve this Doc View Source AllocationBase Declaration public int AllocationBase Field Value Type Description System.Int32 | Improve this Doc View Source AllocationProtect Declaration public uint AllocationProtect Field Value Type Description System.UInt32 | Improve this Doc View Source BaseAddress Declaration public int BaseAddress Field Value Type Description System.Int32 | Improve this Doc View Source Protect Declaration public uint Protect Field Value Type Description System.UInt32 | Improve this Doc View Source RegionSize Declaration public int RegionSize Field Value Type Description System.Int32 | Improve this Doc View Source State Declaration public uint State Field Value Type Description System.UInt32 | Improve this Doc View Source Type Declaration public uint Type Field Value Type Description System.UInt32" }, - "apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html": { - "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html", - "title": "Class Offsets | OSL", - "keywords": "Class Offsets Inheritance System.Object Offsets Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing Assembly : OSL-Client.dll Syntax public class Offsets Fields | Improve this Doc View Source Manager Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Manager Field Value Type Description System.Int32 | Improve this Doc View Source MapCount Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapCount Field Value Type Description System.Int32 | Improve this Doc View Source MapNodeNetId Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapNodeNetId Field Value Type Description System.Int32 | Improve this Doc View Source MapNodeObject Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapNodeObject Field Value Type Description System.Int32 | Improve this Doc View Source MapRoot Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MapRoot Field Value Type Description System.Int32" + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html", + "title": "Class GameObject | OSL", + "keywords": "Class GameObject Inheritance System.Object GameObject Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Object Assembly : OSL-Client.dll Syntax public class GameObject Fields | Improve this Doc View Source buffDeepSize Declaration public const int buffDeepSize = 4096 Field Value Type Description System.Int32 | Improve this Doc View Source CurrentGold Declaration public float CurrentGold Field Value Type Description System.Single | Improve this Doc View Source EXP Declaration public float EXP Field Value Type Description System.Single | Improve this Doc View Source GoldTotal Declaration public float GoldTotal Field Value Type Description System.Single | Improve this Doc View Source Health Declaration public float Health Field Value Type Description System.Single | Improve this Doc View Source ID Declaration public short ID Field Value Type Description System.Int16 | Improve this Doc View Source Level Declaration public int Level Field Value Type Description System.Int32 | Improve this Doc View Source Mana Declaration public float Mana Field Value Type Description System.Single | Improve this Doc View Source MaxHealth Declaration public float MaxHealth Field Value Type Description System.Single | Improve this Doc View Source MaxMana Declaration public float MaxMana Field Value Type Description System.Single | Improve this Doc View Source Name Declaration public string Name Field Value Type Description System.String | Improve this Doc View Source NetworkID Declaration public int NetworkID Field Value Type Description System.Int32 | Improve this Doc View Source Position Declaration public Vector3 Position Field Value Type Description System.Numerics.Vector3 | Improve this Doc View Source Team Declaration public short Team Field Value Type Description System.Int16 Methods | Improve this Doc View Source IsChampion() Declaration public bool IsChampion() Returns Type Description System.Boolean | Improve this Doc View Source LoadChampFromMemory(Byte[], Int32, Boolean) Declaration public void LoadChampFromMemory(byte[] source, int baseAdr, bool deepLoad = true) Parameters Type Name Description System.Byte [] source System.Int32 baseAdr System.Boolean deepLoad | Improve this Doc View Source LoadFromMemory(Int32, Boolean, Int32) Declaration public void LoadFromMemory(int baseAdr, bool deepLoad = true, int buffSize = 13824) Parameters Type Name Description System.Int32 baseAdr System.Boolean deepLoad System.Int32 buffSize" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html", + "title": "Class GameObject.Offsets | OSL", + "keywords": "Class GameObject.Offsets Inheritance System.Object GameObject.Offsets Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Client.RiotApp.MemoryProcessing.Object Assembly : OSL-Client.dll Syntax public class Offsets Fields | Improve this Doc View Source CurrentGold Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int CurrentGold Field Value Type Description System.Int32 | Improve this Doc View Source EXP Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int EXP Field Value Type Description System.Int32 | Improve this Doc View Source GoldTotal Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int GoldTotal Field Value Type Description System.Int32 | Improve this Doc View Source Health Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Health Field Value Type Description System.Int32 | Improve this Doc View Source ID Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ID Field Value Type Description System.Int32 | Improve this Doc View Source ItemInfo Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemInfo Field Value Type Description System.Int32 | Improve this Doc View Source ItemInfoId Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemInfoId Field Value Type Description System.Int32 | Improve this Doc View Source ItemList Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemList Field Value Type Description System.Int32 | Improve this Doc View Source ItemListItem Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int ItemListItem Field Value Type Description System.Int32 | Improve this Doc View Source Mana Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Mana Field Value Type Description System.Int32 | Improve this Doc View Source MaxHealth Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MaxHealth Field Value Type Description System.Int32 | Improve this Doc View Source MaxMana Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int MaxMana Field Value Type Description System.Int32 | Improve this Doc View Source Name Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Name Field Value Type Description System.Int32 | Improve this Doc View Source NetworkID Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int NetworkID Field Value Type Description System.Int32 | Improve this Doc View Source Pos Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Pos Field Value Type Description System.Int32 | Improve this Doc View Source SpellBook Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int SpellBook Field Value Type Description System.Int32 | Improve this Doc View Source Team Declaration [JsonConverter(typeof(HexStringJsonConverter))] public int Team Field Value Type Description System.Int32" + }, + "apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.html": { + "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.html", + "title": "Namespace OSL_Client.RiotApp.MemoryProcessing.Object | OSL", + "keywords": "Namespace OSL_Client.RiotApp.MemoryProcessing.Object Classes GameObject GameObject.Offsets" }, "apiclient/OSL_Client.RiotApp.MemoryProcessing.Snapshot.html": { "href": "apiclient/OSL_Client.RiotApp.MemoryProcessing.Snapshot.html", @@ -182,7 +192,7 @@ "apiserver/index.html": { "href": "apiserver/index.html", "title": "Developper Documentation Server | OSL", - "keywords": "Developper Documentation Server Caution Documentation in progress API/Tools used : Web API Riot Riot API used for take many information CDragon API : CDragon API used for take picture of game and build overlays Game information take with Web API Riot Runes/Perks/Masteries (Used for found rune of all player of the curent game) : - Riot API (Spectator-v4) : /lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId} (default) Summoners Spell (Used for found accountId (encryptedSummonerId) of summonerName) : - Riot API (Summoner-V4) : /lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId} (default) Endpoint of CDragon Endpoint" + "keywords": "Developper Documentation Server Caution Documentation in progress API/Tools used : Web API Riot Riot API used for take many information CDragon API : CDragon API used for take picture of game and build overlays Game information take with Web API Riot Get information of summoner Link - Riot API (Summoner-V4) : /lol/summoner/v4/summoners/by-name/{summonerName} (default) Example value { \"id\": \"xziW6_4V-ILrHKrmgmKoB0CI3MbYRbQEC5t14KcK5F8Ib8Q\", \"accountId\": \"58tu6xAc6YNqH2I4pGafQfGVceUoGKL6h0jvXW00pdv9k44\", \"puuid\": \"r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ\", \"name\": \"Sky csc\", \"profileIconId\": 3225, \"revisionDate\": 1676933459000, \"summonerLevel\": 265 } Get Runes/Perks/Masteries/Summoners Spell from player in curent game Link - Riot API (Spectator-v4) : /lol/spectator/v4/active-games/by-summoner/{encryptedSummonerId} (default) Example value { } Get list of match ids Link - Riot API (Match-v5) : /lol/match/v5/matches/by-puuid/{puuid}/ids (default) Example value [ \"EUW1_6281337448\", \"EUW1_6281303853\", \"EUW1_6281242334\", \"EUW1_6281213734\", \"EUW1_6277829083\", \"EUW1_6277805456\", \"EUW1_6273892284\", \"EUW1_6273878983\", \"EUW1_6273862636\", \"EUW1_6273831420\", \"EUW1_6273826210\", \"EUW1_6272861280\", \"EUW1_6272826665\", \"EUW1_6270877936\", \"EUW1_6265457525\", \"EUW1_6265391413\", \"EUW1_6264887276\", \"EUW1_6264853414\", \"EUW1_6264813923\", \"EUW1_6264777311\" ] Get match information Link - Riot API (Match-v5) : /lol/match/v5/matches/{matchId} (default) Example value { \"metadata\": { \"dataVersion\": \"2\", \"matchId\": \"EUW1_6281337448\", \"participants\": [ \"sqG16BU9amBxYqoH5LZ-ucdjswJ-AvX2VdPf-X-WA1rhDmB8kYeg-7kMEk6sDDwfRYz90xPHHREEMg\", \"ls7NqlVCKkNreRIzQMVqa3AXk2WMhB-6qGSAf1mQyz-CPCNP1BXz-rbBBHWtBZQhAZ1wiwK0_M2igA\", \"F4Y6Be8otUvTH7QilCoNEWAulI4sPccaYt4FmOud5qXdp_JYmk0mEkmdFhwGNISi_7BggwCVv6TwkA\", \"YZVUOCBWz7JhI6UVz7B2ueOq2aWV9leBUm2IH3W1kYyKKV84d26L4jUxNiQzgHKFFRPGdDM0tPtZ4w\", \"nENcE7wHwp-embxEAuovWJ1qDp8EsKIHZ9eQ4P0q0mcN1olSRF6cY8uqFT95-siyg8PqmVXjZBkQFw\", \"5fXpwUM0GU5NXnKk98rk8-gy-5Bz6uHBDuxWUYUsNStohXGYQUkUBFmSLemINVn7RyNVk0dESRhF7Q\", \"r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ\", \"exUzRLgUAFLgLgx5BVzvIk6dp5wNtelRnmXAJzebgGG49D1_z3D4E3znqmusQ624dnm_LFil_foCvQ\", \"UdEiY5yUbUAcN6skV5BEWXYQbrbhug1qyYyuIXwAY0oKhyRUVpFbo18glp8uJ9pH50QxHQYI-7RgCA\", \"UBzXAY4_3Dmc5ZiI5hnSTDAH_ZCIwMUvXcSZNbJSDdBgu08fj33GSstvEjTSt9LPz6d0MudoaL-27w\" ] }, \"info\": { \"gameCreation\": 1676581669670, \"gameDuration\": 1256, \"gameEndTimestamp\": 1676583002390, \"gameId\": 6281337448, \"gameMode\": \"URF\", \"gameName\": \"teambuilder-match-6281337448\", \"gameStartTimestamp\": 1676581745918, \"gameType\": \"MATCHED_GAME\", \"gameVersion\": \"13.3.491.6222\", \"mapId\": 11, \"participants\": [ { \"allInPings\": 0, \"assistMePings\": 2, \"assists\": 7, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 2, \"champExperience\": 29193, \"champLevel\": 23, \"championId\": 35, \"championName\": \"Shaco\", \"championTransform\": 0, \"commandPings\": 1, \"consumablesPurchased\": 1, \"damageDealtToBuildings\": 0, \"damageDealtToObjectives\": 908, \"damageDealtToTurrets\": 0, \"damageSelfMitigated\": 19269, \"dangerPings\": 0, \"deaths\": 9, \"detectorWardsPlaced\": 0, \"doubleKills\": 1, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 1, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 12874, \"goldSpent\": 9750, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 0, \"inhibitorsLost\": 3, \"item0\": 6653, \"item1\": 2421, \"item2\": 3108, \"item3\": 3116, \"item4\": 3020, \"item5\": 3191, \"item6\": 3340, \"itemsPurchased\": 16, \"killingSprees\": 1, \"kills\": 5, \"lane\": \"TOP\", \"largestCriticalStrike\": 0, \"largestKillingSpree\": 2, \"largestMultiKill\": 2, \"longestTimeSpentLiving\": 170, \"magicDamageDealt\": 75571, \"magicDamageDealtToChampions\": 18623, \"magicDamageTaken\": 5940, \"needVisionPings\": 0, \"neutralMinionsKilled\": 4, \"nexusKills\": 0, \"nexusLost\": 1, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 0, \"participantId\": 1, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5002, \"flex\": 5008, \"offense\": 5005 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8128, \"var1\": 803, \"var2\": 19, \"var3\": 0 }, { \"perk\": 8143, \"var1\": 740, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8138, \"var1\": 30, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8105, \"var1\": 8, \"var2\": 3, \"var3\": 0 } ], \"style\": 8100 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8014, \"var1\": 426, \"var2\": 0, \"var3\": 0 }, { \"perk\": 9104, \"var1\": 13, \"var2\": 40, \"var3\": 0 } ], \"style\": 8000 } ] }, \"physicalDamageDealt\": 10728, \"physicalDamageDealtToChampions\": 371, \"physicalDamageTaken\": 22052, \"profileIcon\": 5626, \"pushPings\": 0, \"puuid\": \"sqG16BU9amBxYqoH5LZ-ucdjswJ-AvX2VdPf-X-WA1rhDmB8kYeg-7kMEk6sDDwfRYz90xPHHREEMg\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"SUPPORT\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 70, \"spell2Casts\": 118, \"spell3Casts\": 78, \"spell4Casts\": 116, \"summoner1Casts\": 9, \"summoner1Id\": 14, \"summoner2Casts\": 4, \"summoner2Id\": 4, \"summonerId\": \"9WNBwhaEj9b2i2M18I5WCukkD0qf5rE7Mc2AT_q7F48tNE-1\", \"summonerLevel\": 186, \"summonerName\": \"SoIeil\", \"teamEarlySurrendered\": false, \"teamId\": 100, \"teamPosition\": \"\", \"timeCCingOthers\": 48, \"timePlayed\": 1256, \"totalDamageDealt\": 94083, \"totalDamageDealtToChampions\": 21402, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 28568, \"totalHeal\": 2707, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 73, \"totalTimeCCDealt\": 790, \"totalTimeSpentDead\": 234, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 7783, \"trueDamageDealtToChampions\": 2408, \"trueDamageTaken\": 575, \"turretKills\": 0, \"turretTakedowns\": 0, \"turretsLost\": 11, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 7, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": false }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 5, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 29855, \"champLevel\": 24, \"championId\": 121, \"championName\": \"Khazix\", \"championTransform\": 0, \"commandPings\": 2, \"consumablesPurchased\": 1, \"damageDealtToBuildings\": 316, \"damageDealtToObjectives\": 32455, \"damageDealtToTurrets\": 316, \"damageSelfMitigated\": 36718, \"dangerPings\": 0, \"deaths\": 9, \"detectorWardsPlaced\": 0, \"doubleKills\": 1, \"dragonKills\": 3, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 0, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 17624, \"goldSpent\": 16450, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 0, \"inhibitorsLost\": 3, \"item0\": 6671, \"item1\": 3074, \"item2\": 6676, \"item3\": 3031, \"item4\": 3508, \"item5\": 0, \"item6\": 3340, \"itemsPurchased\": 26, \"killingSprees\": 3, \"kills\": 6, \"lane\": \"BOTTOM\", \"largestCriticalStrike\": 2543, \"largestKillingSpree\": 2, \"largestMultiKill\": 2, \"longestTimeSpentLiving\": 218, \"magicDamageDealt\": 3179, \"magicDamageDealtToChampions\": 1715, \"magicDamageTaken\": 10221, \"needVisionPings\": 0, \"neutralMinionsKilled\": 78, \"nexusKills\": 0, \"nexusLost\": 1, \"nexusTakedowns\": 0, \"objectivesStolen\": 1, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 0, \"participantId\": 2, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5002, \"flex\": 5008, \"offense\": 5008 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8128, \"var1\": 660, \"var2\": 16, \"var3\": 0 }, { \"perk\": 8143, \"var1\": 1105, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8138, \"var1\": 18, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8135, \"var1\": 550, \"var2\": 5, \"var3\": 0 } ], \"style\": 8100 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8014, \"var1\": 499, \"var2\": 0, \"var3\": 0 }, { \"perk\": 9111, \"var1\": 776, \"var2\": 220, \"var3\": 0 } ], \"style\": 8000 } ] }, \"physicalDamageDealt\": 219069, \"physicalDamageDealtToChampions\": 25604, \"physicalDamageTaken\": 36111, \"profileIcon\": 5692, \"pushPings\": 0, \"puuid\": \"ls7NqlVCKkNreRIzQMVqa3AXk2WMhB-6qGSAf1mQyz-CPCNP1BXz-rbBBHWtBZQhAZ1wiwK0_M2igA\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"SOLO\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 185, \"spell2Casts\": 207, \"spell3Casts\": 112, \"spell4Casts\": 25, \"summoner1Casts\": 4, \"summoner1Id\": 4, \"summoner2Casts\": 10, \"summoner2Id\": 6, \"summonerId\": \"RLG2Dfb0qsHMyjrRbUDlNvblAzLd5O3w7nau3pAv0bOEQfg\", \"summonerLevel\": 377, \"summonerName\": \"Kal El Oni\", \"teamEarlySurrendered\": false, \"teamId\": 100, \"teamPosition\": \"\", \"timeCCingOthers\": 4, \"timePlayed\": 1256, \"totalDamageDealt\": 228785, \"totalDamageDealtToChampions\": 27869, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 47821, \"totalHeal\": 14295, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 113, \"totalTimeCCDealt\": 64, \"totalTimeSpentDead\": 231, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 6536, \"trueDamageDealtToChampions\": 548, \"trueDamageTaken\": 1488, \"turretKills\": 0, \"turretTakedowns\": 0, \"turretsLost\": 11, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 25, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 1, \"wardsPlaced\": 0, \"win\": false }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 5, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 26815, \"champLevel\": 22, \"championId\": 268, \"championName\": \"Azir\", \"championTransform\": 0, \"commandPings\": 0, \"consumablesPurchased\": 0, \"damageDealtToBuildings\": 2627, \"damageDealtToObjectives\": 2627, \"damageDealtToTurrets\": 2627, \"damageSelfMitigated\": 42401, \"dangerPings\": 0, \"deaths\": 8, \"detectorWardsPlaced\": 0, \"doubleKills\": 2, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 1, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 16820, \"goldSpent\": 14700, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 0, \"inhibitorsLost\": 3, \"item0\": 3040, \"item1\": 3115, \"item2\": 6657, \"item3\": 3020, \"item4\": 3135, \"item5\": 3082, \"item6\": 3340, \"itemsPurchased\": 21, \"killingSprees\": 3, \"kills\": 14, \"lane\": \"JUNGLE\", \"largestCriticalStrike\": 0, \"largestKillingSpree\": 6, \"largestMultiKill\": 2, \"longestTimeSpentLiving\": 283, \"magicDamageDealt\": 128432, \"magicDamageDealtToChampions\": 36518, \"magicDamageTaken\": 9580, \"needVisionPings\": 0, \"neutralMinionsKilled\": 4, \"nexusKills\": 0, \"nexusLost\": 1, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 0, \"participantId\": 3, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5003, \"flex\": 5008, \"offense\": 5005 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8229, \"var1\": 1453, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8224, \"var1\": 1037, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8210, \"var1\": 2, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8237, \"var1\": 756, \"var2\": 0, \"var3\": 0 } ], \"style\": 8200 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8345, \"var1\": 4, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8347, \"var1\": 0, \"var2\": 0, \"var3\": 0 } ], \"style\": 8300 } ] }, \"physicalDamageDealt\": 4867, \"physicalDamageDealtToChampions\": 1244, \"physicalDamageTaken\": 27626, \"profileIcon\": 5047, \"pushPings\": 0, \"puuid\": \"F4Y6Be8otUvTH7QilCoNEWAulI4sPccaYt4FmOud5qXdp_JYmk0mEkmdFhwGNISi_7BggwCVv6TwkA\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"NONE\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 165, \"spell2Casts\": 307, \"spell3Casts\": 33, \"spell4Casts\": 14, \"summoner1Casts\": 6, \"summoner1Id\": 3, \"summoner2Casts\": 7, \"summoner2Id\": 4, \"summonerId\": \"_gxM2hzmxDarcPXYHkXW9X7ixBjn_y2Miz_Mydt-fjHuFpc\", \"summonerLevel\": 318, \"summonerName\": \"VoPraX \", \"teamEarlySurrendered\": false, \"teamId\": 100, \"teamPosition\": \"\", \"timeCCingOthers\": 26, \"timePlayed\": 1256, \"totalDamageDealt\": 133457, \"totalDamageDealtToChampions\": 37920, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 38401, \"totalHeal\": 3603, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 88, \"totalTimeCCDealt\": 332, \"totalTimeSpentDead\": 280, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 158, \"trueDamageDealtToChampions\": 158, \"trueDamageTaken\": 1193, \"turretKills\": 0, \"turretTakedowns\": 0, \"turretsLost\": 11, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 17, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": false }, { \"allInPings\": 0, \"assistMePings\": 2, \"assists\": 9, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 23435, \"champLevel\": 20, \"championId\": 1, \"championName\": \"Annie\", \"championTransform\": 0, \"commandPings\": 0, \"consumablesPurchased\": 1, \"damageDealtToBuildings\": 367, \"damageDealtToObjectives\": 5820, \"damageDealtToTurrets\": 367, \"damageSelfMitigated\": 23642, \"dangerPings\": 0, \"deaths\": 10, \"detectorWardsPlaced\": 0, \"doubleKills\": 0, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 0, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 13132, \"goldSpent\": 12700, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 0, \"inhibitorsLost\": 3, \"item0\": 4636, \"item1\": 2421, \"item2\": 4645, \"item3\": 3089, \"item4\": 3191, \"item5\": 3020, \"item6\": 3340, \"itemsPurchased\": 18, \"killingSprees\": 1, \"kills\": 5, \"lane\": \"TOP\", \"largestCriticalStrike\": 192, \"largestKillingSpree\": 2, \"largestMultiKill\": 1, \"longestTimeSpentLiving\": 303, \"magicDamageDealt\": 83491, \"magicDamageDealtToChampions\": 26751, \"magicDamageTaken\": 3616, \"needVisionPings\": 0, \"neutralMinionsKilled\": 0, \"nexusKills\": 0, \"nexusLost\": 1, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 1, \"onMyWayPings\": 0, \"participantId\": 4, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5003, \"flex\": 5008, \"offense\": 5008 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8112, \"var1\": 1807, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8126, \"var1\": 605, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8138, \"var1\": 30, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8105, \"var1\": 13, \"var2\": 5, \"var3\": 0 } ], \"style\": 8100 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8233, \"var1\": 9, \"var2\": 50, \"var3\": 0 }, { \"perk\": 8224, \"var1\": 826, \"var2\": 0, \"var3\": 0 } ], \"style\": 8200 } ] }, \"physicalDamageDealt\": 2023, \"physicalDamageDealtToChampions\": 451, \"physicalDamageTaken\": 25640, \"profileIcon\": 5227, \"pushPings\": 0, \"puuid\": \"YZVUOCBWz7JhI6UVz7B2ueOq2aWV9leBUm2IH3W1kYyKKV84d26L4jUxNiQzgHKFFRPGdDM0tPtZ4w\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"DUO\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 137, \"spell2Casts\": 101, \"spell3Casts\": 124, \"spell4Casts\": 30, \"summoner1Casts\": 8, \"summoner1Id\": 4, \"summoner2Casts\": 8, \"summoner2Id\": 14, \"summonerId\": \"B7jOkjea_AehG7An7f47j1JuQa93omMPQYCe8yOZll2T8mQ\", \"summonerLevel\": 137, \"summonerName\": \"Jymster\", \"teamEarlySurrendered\": false, \"teamId\": 100, \"teamPosition\": \"\", \"timeCCingOthers\": 28, \"timePlayed\": 1256, \"totalDamageDealt\": 87229, \"totalDamageDealtToChampions\": 28917, \"totalDamageShieldedOnTeammates\": 3173, \"totalDamageTaken\": 30104, \"totalHeal\": 1320, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 82, \"totalTimeCCDealt\": 198, \"totalTimeSpentDead\": 382, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 1714, \"trueDamageDealtToChampions\": 1714, \"trueDamageTaken\": 847, \"turretKills\": 0, \"turretTakedowns\": 0, \"turretsLost\": 11, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 11, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 1, \"wardsPlaced\": 0, \"win\": false }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 12, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 28286, \"champLevel\": 23, \"championId\": 58, \"championName\": \"Renekton\", \"championTransform\": 0, \"commandPings\": 0, \"consumablesPurchased\": 0, \"damageDealtToBuildings\": 3698, \"damageDealtToObjectives\": 3829, \"damageDealtToTurrets\": 3698, \"damageSelfMitigated\": 49214, \"dangerPings\": 0, \"deaths\": 8, \"detectorWardsPlaced\": 0, \"doubleKills\": 0, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 0, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 17602, \"goldSpent\": 19200, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 0, \"inhibitorsLost\": 3, \"item0\": 3748, \"item1\": 6692, \"item2\": 3111, \"item3\": 3031, \"item4\": 3072, \"item5\": 6676, \"item6\": 3364, \"itemsPurchased\": 18, \"killingSprees\": 3, \"kills\": 12, \"lane\": \"TOP\", \"largestCriticalStrike\": 1052, \"largestKillingSpree\": 4, \"largestMultiKill\": 1, \"longestTimeSpentLiving\": 418, \"magicDamageDealt\": 11938, \"magicDamageDealtToChampions\": 3491, \"magicDamageTaken\": 18529, \"needVisionPings\": 0, \"neutralMinionsKilled\": 8, \"nexusKills\": 0, \"nexusLost\": 1, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 1, \"participantId\": 5, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5002, \"flex\": 5008, \"offense\": 5005 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8005, \"var1\": 3688, \"var2\": 1517, \"var3\": 2170 }, { \"perk\": 9111, \"var1\": 1878, \"var2\": 480, \"var3\": 0 }, { \"perk\": 9105, \"var1\": 7, \"var2\": 10, \"var3\": 0 }, { \"perk\": 8299, \"var1\": 1538, \"var2\": 0, \"var3\": 0 } ], \"style\": 8000 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8126, \"var1\": 1065, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8106, \"var1\": 5, \"var2\": 0, \"var3\": 0 } ], \"style\": 8100 } ] }, \"physicalDamageDealt\": 144672, \"physicalDamageDealtToChampions\": 35975, \"physicalDamageTaken\": 24988, \"profileIcon\": 23, \"pushPings\": 0, \"puuid\": \"nENcE7wHwp-embxEAuovWJ1qDp8EsKIHZ9eQ4P0q0mcN1olSRF6cY8uqFT95-siyg8PqmVXjZBkQFw\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"DUO\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 93, \"spell2Casts\": 49, \"spell3Casts\": 104, \"spell4Casts\": 17, \"summoner1Casts\": 9, \"summoner1Id\": 14, \"summoner2Casts\": 9, \"summoner2Id\": 4, \"summonerId\": \"Nnnuo_H1rMYrtjvW81GZXDnqMkZPibwRTg1tIINJzYGILAA\", \"summonerLevel\": 275, \"summonerName\": \"Zob de Compet\", \"teamEarlySurrendered\": false, \"teamId\": 100, \"teamPosition\": \"\", \"timeCCingOthers\": 31, \"timePlayed\": 1256, \"totalDamageDealt\": 160870, \"totalDamageDealtToChampions\": 43726, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 44564, \"totalHeal\": 7824, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 128, \"totalTimeCCDealt\": 40, \"totalTimeSpentDead\": 305, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 4259, \"trueDamageDealtToChampions\": 4259, \"trueDamageTaken\": 1045, \"turretKills\": 1, \"turretTakedowns\": 1, \"turretsLost\": 11, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 22, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 2, \"wardsPlaced\": 0, \"win\": false }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 8, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 27603, \"champLevel\": 22, \"championId\": 75, \"championName\": \"Nasus\", \"championTransform\": 0, \"commandPings\": 3, \"consumablesPurchased\": 0, \"damageDealtToBuildings\": 9243, \"damageDealtToObjectives\": 13087, \"damageDealtToTurrets\": 9243, \"damageSelfMitigated\": 60561, \"dangerPings\": 0, \"deaths\": 4, \"detectorWardsPlaced\": 0, \"doubleKills\": 0, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 0, \"firstBloodAssist\": false, \"firstBloodKill\": true, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 17908, \"goldSpent\": 16200, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 1, \"inhibitorTakedowns\": 1, \"inhibitorsLost\": 0, \"item0\": 3047, \"item1\": 3084, \"item2\": 4401, \"item3\": 3065, \"item4\": 3068, \"item5\": 0, \"item6\": 3340, \"itemsPurchased\": 23, \"killingSprees\": 1, \"kills\": 6, \"lane\": \"MIDDLE\", \"largestCriticalStrike\": 0, \"largestKillingSpree\": 5, \"largestMultiKill\": 1, \"longestTimeSpentLiving\": 670, \"magicDamageDealt\": 30136, \"magicDamageDealtToChampions\": 7624, \"magicDamageTaken\": 26310, \"needVisionPings\": 0, \"neutralMinionsKilled\": 34, \"nexusKills\": 0, \"nexusLost\": 0, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 2, \"participantId\": 6, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5002, \"flex\": 5008, \"offense\": 5008 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8128, \"var1\": 936, \"var2\": 25, \"var3\": 0 }, { \"perk\": 8139, \"var1\": 945, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8138, \"var1\": 18, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8135, \"var1\": 550, \"var2\": 5, \"var3\": 0 } ], \"style\": 8100 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8210, \"var1\": 0, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8236, \"var1\": 28, \"var2\": 0, \"var3\": 0 } ], \"style\": 8200 } ] }, \"physicalDamageDealt\": 122455, \"physicalDamageDealtToChampions\": 17721, \"physicalDamageTaken\": 18958, \"profileIcon\": 4923, \"pushPings\": 0, \"puuid\": \"5fXpwUM0GU5NXnKk98rk8-gy-5Bz6uHBDuxWUYUsNStohXGYQUkUBFmSLemINVn7RyNVk0dESRhF7Q\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"SUPPORT\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 263, \"spell2Casts\": 40, \"spell3Casts\": 67, \"spell4Casts\": 16, \"summoner1Casts\": 11, \"summoner1Id\": 4, \"summoner2Casts\": 15, \"summoner2Id\": 6, \"summonerId\": \"vYx_hhoEaBipJt0tONlTEPfQRTDzyT_W6HYnPHp5_wrU5r9yN5ZxwAZYfQ\", \"summonerLevel\": 98, \"summonerName\": \"Wymiride\", \"teamEarlySurrendered\": false, \"teamId\": 200, \"teamPosition\": \"\", \"timeCCingOthers\": 20, \"timePlayed\": 1256, \"totalDamageDealt\": 153838, \"totalDamageDealtToChampions\": 25486, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 47504, \"totalHeal\": 13793, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 96, \"totalTimeCCDealt\": 148, \"totalTimeSpentDead\": 109, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 1247, \"trueDamageDealtToChampions\": 140, \"trueDamageTaken\": 2235, \"turretKills\": 2, \"turretTakedowns\": 3, \"turretsLost\": 1, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 18, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": true }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 4, \"baitPings\": 0, \"baronKills\": 1, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 31163, \"champLevel\": 24, \"championId\": 18, \"championName\": \"Tristana\", \"championTransform\": 0, \"commandPings\": 7, \"consumablesPurchased\": 0, \"damageDealtToBuildings\": 14675, \"damageDealtToObjectives\": 73011, \"damageDealtToTurrets\": 14675, \"damageSelfMitigated\": 23921, \"dangerPings\": 0, \"deaths\": 11, \"detectorWardsPlaced\": 0, \"doubleKills\": 2, \"dragonKills\": 2, \"eligibleForProgression\": true, \"enemyMissingPings\": 0, \"enemyVisionPings\": 0, \"firstBloodAssist\": true, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": true, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 22278, \"goldSpent\": 19200, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 1, \"inhibitorTakedowns\": 1, \"inhibitorsLost\": 0, \"item0\": 6672, \"item1\": 3094, \"item2\": 3046, \"item3\": 3031, \"item4\": 3072, \"item5\": 3036, \"item6\": 3513, \"itemsPurchased\": 19, \"killingSprees\": 5, \"kills\": 17, \"lane\": \"MIDDLE\", \"largestCriticalStrike\": 1175, \"largestKillingSpree\": 7, \"largestMultiKill\": 2, \"longestTimeSpentLiving\": 185, \"magicDamageDealt\": 22089, \"magicDamageDealtToChampions\": 2969, \"magicDamageTaken\": 21412, \"needVisionPings\": 0, \"neutralMinionsKilled\": 24, \"nexusKills\": 0, \"nexusLost\": 0, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 4, \"participantId\": 7, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5002, \"flex\": 5008, \"offense\": 5005 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 9923, \"var1\": 82, \"var2\": 91, \"var3\": 0 }, { \"perk\": 8139, \"var1\": 1786, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8138, \"var1\": 18, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8135, \"var1\": 550, \"var2\": 5, \"var3\": 0 } ], \"style\": 8100 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8014, \"var1\": 2094, \"var2\": 0, \"var3\": 0 }, { \"perk\": 9103, \"var1\": 13, \"var2\": 20, \"var3\": 0 } ], \"style\": 8000 } ] }, \"physicalDamageDealt\": 252416, \"physicalDamageDealtToChampions\": 52652, \"physicalDamageTaken\": 12674, \"profileIcon\": 3225, \"pushPings\": 0, \"puuid\": \"r7ImkhxSkkUkO3MSLaJhHkJ-uNdDGc6mGb7TPDGCh3LBGvT-veaD1OjG1755pR2thiINuPcVB7HjwQ\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"DUO\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 91, \"spell2Casts\": 63, \"spell3Casts\": 116, \"spell4Casts\": 11, \"summoner1Casts\": 10, \"summoner1Id\": 4, \"summoner2Casts\": 12, \"summoner2Id\": 6, \"summonerId\": \"xziW6_4V-ILrHKrmgmKoB0CI3MbYRbQEC5t14KcK5F8Ib8Q\", \"summonerLevel\": 265, \"summonerName\": \"Sky csc\", \"teamEarlySurrendered\": false, \"teamId\": 200, \"teamPosition\": \"\", \"timeCCingOthers\": 8, \"timePlayed\": 1256, \"totalDamageDealt\": 289702, \"totalDamageDealtToChampions\": 58874, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 35086, \"totalHeal\": 11279, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 145, \"totalTimeCCDealt\": 38, \"totalTimeSpentDead\": 289, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 15196, \"trueDamageDealtToChampions\": 3252, \"trueDamageTaken\": 999, \"turretKills\": 4, \"turretTakedowns\": 4, \"turretsLost\": 1, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 24, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": true }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 11, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 5, \"champExperience\": 32262, \"champLevel\": 25, \"championId\": 56, \"championName\": \"Nocturne\", \"championTransform\": 0, \"commandPings\": 0, \"consumablesPurchased\": 0, \"damageDealtToBuildings\": 1532, \"damageDealtToObjectives\": 1532, \"damageDealtToTurrets\": 1532, \"damageSelfMitigated\": 34670, \"dangerPings\": 0, \"deaths\": 5, \"detectorWardsPlaced\": 0, \"doubleKills\": 0, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 6, \"enemyVisionPings\": 0, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 1, \"goldEarned\": 16845, \"goldSpent\": 14900, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 0, \"inhibitorsLost\": 0, \"item0\": 6692, \"item1\": 3814, \"item2\": 3111, \"item3\": 3153, \"item4\": 3156, \"item5\": 3035, \"item6\": 3363, \"itemsPurchased\": 35, \"killingSprees\": 2, \"kills\": 10, \"lane\": \"BOTTOM\", \"largestCriticalStrike\": 0, \"largestKillingSpree\": 5, \"largestMultiKill\": 1, \"longestTimeSpentLiving\": 396, \"magicDamageDealt\": 4615, \"magicDamageDealtToChampions\": 2421, \"magicDamageTaken\": 17942, \"needVisionPings\": 0, \"neutralMinionsKilled\": 8, \"nexusKills\": 0, \"nexusLost\": 0, \"nexusTakedowns\": 0, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 0, \"participantId\": 8, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5001, \"flex\": 5008, \"offense\": 5005 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8008, \"var1\": 25, \"var2\": 0, \"var3\": 0 }, { \"perk\": 9111, \"var1\": 2224, \"var2\": 420, \"var3\": 0 }, { \"perk\": 9104, \"var1\": 10, \"var2\": 40, \"var3\": 0 }, { \"perk\": 8014, \"var1\": 1007, \"var2\": 0, \"var3\": 0 } ], \"style\": 8000 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8126, \"var1\": 992, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8106, \"var1\": 5, \"var2\": 0, \"var3\": 0 } ], \"style\": 8100 } ] }, \"physicalDamageDealt\": 95304, \"physicalDamageDealtToChampions\": 31973, \"physicalDamageTaken\": 15118, \"profileIcon\": 4571, \"pushPings\": 0, \"puuid\": \"exUzRLgUAFLgLgx5BVzvIk6dp5wNtelRnmXAJzebgGG49D1_z3D4E3znqmusQ624dnm_LFil_foCvQ\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"SOLO\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 152, \"spell2Casts\": 63, \"spell3Casts\": 34, \"spell4Casts\": 29, \"summoner1Casts\": 7, \"summoner1Id\": 6, \"summoner2Casts\": 7, \"summoner2Id\": 4, \"summonerId\": \"Y6dz-cfqfkszEhBcdc-hniNLQ7Ewv1Zjcb7iY1NHzkt5gQI\", \"summonerLevel\": 571, \"summonerName\": \"DYMripper\", \"teamEarlySurrendered\": false, \"teamId\": 200, \"teamPosition\": \"\", \"timeCCingOthers\": 237, \"timePlayed\": 1256, \"totalDamageDealt\": 101777, \"totalDamageDealtToChampions\": 35459, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 33812, \"totalHeal\": 7398, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 69, \"totalTimeCCDealt\": 508, \"totalTimeSpentDead\": 124, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 1858, \"trueDamageDealtToChampions\": 1064, \"trueDamageTaken\": 751, \"turretKills\": 1, \"turretTakedowns\": 1, \"turretsLost\": 1, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 16, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": true }, { \"allInPings\": 0, \"assistMePings\": 0, \"assists\": 7, \"baitPings\": 0, \"baronKills\": 0, \"basicPings\": 0, \"bountyLevel\": 3, \"champExperience\": 31776, \"champLevel\": 25, \"championId\": 39, \"championName\": \"Irelia\", \"championTransform\": 0, \"commandPings\": 1, \"consumablesPurchased\": 3, \"damageDealtToBuildings\": 1762, \"damageDealtToObjectives\": 27329, \"damageDealtToTurrets\": 1762, \"damageSelfMitigated\": 42941, \"dangerPings\": 0, \"deaths\": 16, \"detectorWardsPlaced\": 0, \"doubleKills\": 2, \"dragonKills\": 1, \"eligibleForProgression\": true, \"enemyMissingPings\": 6, \"enemyVisionPings\": 0, \"firstBloodAssist\": false, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 15661, \"goldSpent\": 14670, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 0, \"inhibitorTakedowns\": 1, \"inhibitorsLost\": 0, \"item0\": 6333, \"item1\": 3009, \"item2\": 3074, \"item3\": 6632, \"item4\": 6609, \"item5\": 1036, \"item6\": 3340, \"itemsPurchased\": 30, \"killingSprees\": 2, \"kills\": 8, \"lane\": \"TOP\", \"largestCriticalStrike\": 0, \"largestKillingSpree\": 3, \"largestMultiKill\": 2, \"longestTimeSpentLiving\": 111, \"magicDamageDealt\": 25351, \"magicDamageDealtToChampions\": 6423, \"magicDamageTaken\": 14193, \"needVisionPings\": 0, \"neutralMinionsKilled\": 22, \"nexusKills\": 1, \"nexusLost\": 0, \"nexusTakedowns\": 1, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 1, \"participantId\": 9, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5002, \"flex\": 5008, \"offense\": 5005 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8010, \"var1\": 601, \"var2\": 0, \"var3\": 0 }, { \"perk\": 9111, \"var1\": 1348, \"var2\": 300, \"var3\": 0 }, { \"perk\": 9104, \"var1\": 14, \"var2\": 30, \"var3\": 0 }, { \"perk\": 8299, \"var1\": 1284, \"var2\": 0, \"var3\": 0 } ], \"style\": 8000 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8451, \"var1\": 240, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8446, \"var1\": 561, \"var2\": 0, \"var3\": 0 } ], \"style\": 8400 } ] }, \"physicalDamageDealt\": 116449, \"physicalDamageDealtToChampions\": 18761, \"physicalDamageTaken\": 27089, \"profileIcon\": 3886, \"pushPings\": 0, \"puuid\": \"UdEiY5yUbUAcN6skV5BEWXYQbrbhug1qyYyuIXwAY0oKhyRUVpFbo18glp8uJ9pH50QxHQYI-7RgCA\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"SOLO\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 168, \"spell2Casts\": 47, \"spell3Casts\": 99, \"spell4Casts\": 12, \"summoner1Casts\": 11, \"summoner1Id\": 4, \"summoner2Casts\": 9, \"summoner2Id\": 6, \"summonerId\": \"k2gJlXbRkUy_3yq68d0fWhYwexDeGnM7M65qmANpP56R0nI\", \"summonerLevel\": 252, \"summonerName\": \"Hei Feng Lii\", \"teamEarlySurrendered\": false, \"teamId\": 200, \"teamPosition\": \"\", \"timeCCingOthers\": 11, \"timePlayed\": 1256, \"totalDamageDealt\": 141801, \"totalDamageDealtToChampions\": 25185, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 45476, \"totalHeal\": 12537, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 83, \"totalTimeCCDealt\": 60, \"totalTimeSpentDead\": 384, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 0, \"trueDamageDealtToChampions\": 0, \"trueDamageTaken\": 4194, \"turretKills\": 1, \"turretTakedowns\": 1, \"turretsLost\": 1, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 17, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": true }, { \"allInPings\": 0, \"assistMePings\": 1, \"assists\": 10, \"baitPings\": 0, \"baronKills\": 1, \"basicPings\": 0, \"bountyLevel\": 0, \"champExperience\": 31010, \"champLevel\": 24, \"championId\": 90, \"championName\": \"Malzahar\", \"championTransform\": 0, \"commandPings\": 2, \"consumablesPurchased\": 1, \"damageDealtToBuildings\": 9294, \"damageDealtToObjectives\": 84387, \"damageDealtToTurrets\": 9294, \"damageSelfMitigated\": 16005, \"dangerPings\": 0, \"deaths\": 7, \"detectorWardsPlaced\": 0, \"doubleKills\": 0, \"dragonKills\": 0, \"eligibleForProgression\": true, \"enemyMissingPings\": 3, \"enemyVisionPings\": 0, \"firstBloodAssist\": true, \"firstBloodKill\": false, \"firstTowerAssist\": false, \"firstTowerKill\": false, \"gameEndedInEarlySurrender\": false, \"gameEndedInSurrender\": false, \"getBackPings\": 0, \"goldEarned\": 16302, \"goldSpent\": 14850, \"holdPings\": 0, \"individualPosition\": \"Invalid\", \"inhibitorKills\": 1, \"inhibitorTakedowns\": 1, \"inhibitorsLost\": 0, \"item0\": 6653, \"item1\": 3020, \"item2\": 4637, \"item3\": 4645, \"item4\": 3089, \"item5\": 1011, \"item6\": 3340, \"itemsPurchased\": 19, \"killingSprees\": 0, \"kills\": 3, \"lane\": \"MIDDLE\", \"largestCriticalStrike\": 0, \"largestKillingSpree\": 0, \"largestMultiKill\": 1, \"longestTimeSpentLiving\": 354, \"magicDamageDealt\": 214474, \"magicDamageDealtToChampions\": 27561, \"magicDamageTaken\": 9883, \"needVisionPings\": 0, \"neutralMinionsKilled\": 24, \"nexusKills\": 0, \"nexusLost\": 0, \"nexusTakedowns\": 1, \"objectivesStolen\": 0, \"objectivesStolenAssists\": 0, \"onMyWayPings\": 0, \"participantId\": 10, \"pentaKills\": 0, \"perks\": { \"statPerks\": { \"defense\": 5003, \"flex\": 5008, \"offense\": 5008 }, \"styles\": [ { \"description\": \"primaryStyle\", \"selections\": [ { \"perk\": 8214, \"var1\": 2116, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8224, \"var1\": 797, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8210, \"var1\": 1, \"var2\": 0, \"var3\": 0 }, { \"perk\": 8237, \"var1\": 723, \"var2\": 0, \"var3\": 0 } ], \"style\": 8200 }, { \"description\": \"subStyle\", \"selections\": [ { \"perk\": 8105, \"var1\": 13, \"var2\": 5, \"var3\": 0 }, { \"perk\": 8126, \"var1\": 834, \"var2\": 0, \"var3\": 0 } ], \"style\": 8100 } ] }, \"physicalDamageDealt\": 6594, \"physicalDamageDealtToChampions\": 438, \"physicalDamageTaken\": 12834, \"profileIcon\": 782, \"pushPings\": 0, \"puuid\": \"UBzXAY4_3Dmc5ZiI5hnSTDAH_ZCIwMUvXcSZNbJSDdBgu08fj33GSstvEjTSt9LPz6d0MudoaL-27w\", \"quadraKills\": 0, \"riotIdName\": \"\", \"riotIdTagline\": \"\", \"role\": \"SUPPORT\", \"sightWardsBoughtInGame\": 0, \"spell1Casts\": 311, \"spell2Casts\": 371, \"spell3Casts\": 155, \"spell4Casts\": 9, \"summoner1Casts\": 7, \"summoner1Id\": 4, \"summoner2Casts\": 14, \"summoner2Id\": 6, \"summonerId\": \"_JsJ9_tvuIRm60mcv_bITpjs_iNllhF0h7IxW8pPQUv2kcg\", \"summonerLevel\": 194, \"summonerName\": \"Hirobb\", \"teamEarlySurrendered\": false, \"teamId\": 200, \"teamPosition\": \"\", \"timeCCingOthers\": 71, \"timePlayed\": 1256, \"totalDamageDealt\": 222168, \"totalDamageDealtToChampions\": 28695, \"totalDamageShieldedOnTeammates\": 0, \"totalDamageTaken\": 24183, \"totalHeal\": 2085, \"totalHealsOnTeammates\": 0, \"totalMinionsKilled\": 121, \"totalTimeCCDealt\": 388, \"totalTimeSpentDead\": 191, \"totalUnitsHealed\": 1, \"tripleKills\": 0, \"trueDamageDealt\": 1099, \"trueDamageDealtToChampions\": 695, \"trueDamageTaken\": 1466, \"turretKills\": 2, \"turretTakedowns\": 2, \"turretsLost\": 1, \"unrealKills\": 0, \"visionClearedPings\": 0, \"visionScore\": 18, \"visionWardsBoughtInGame\": 0, \"wardsKilled\": 0, \"wardsPlaced\": 0, \"win\": true } ], \"platformId\": \"EUW1\", \"queueId\": 900, \"teams\": [ { \"bans\": [], \"objectives\": { \"baron\": { \"first\": false, \"kills\": 0 }, \"champion\": { \"first\": false, \"kills\": 43 }, \"dragon\": { \"first\": true, \"kills\": 3 }, \"inhibitor\": { \"first\": false, \"kills\": 0 }, \"riftHerald\": { \"first\": false, \"kills\": 0 }, \"tower\": { \"first\": false, \"kills\": 1 } }, \"teamId\": 100, \"win\": false }, { \"bans\": [], \"objectives\": { \"baron\": { \"first\": true, \"kills\": 2 }, \"champion\": { \"first\": true, \"kills\": 44 }, \"dragon\": { \"first\": false, \"kills\": 3 }, \"inhibitor\": { \"first\": true, \"kills\": 3 }, \"riftHerald\": { \"first\": false, \"kills\": 0 }, \"tower\": { \"first\": true, \"kills\": 11 } }, \"teamId\": 200, \"win\": true } ], \"tournamentCode\": \"\" } } Endpoint of CDragon Endpoint" }, "apiserver/OSL_Server.Communication.AsyncServer.html": { "href": "apiserver/OSL_Server.Communication.AsyncServer.html", @@ -202,28 +212,13 @@ "apiserver/OSL_Server.Configuration.Config.html": { "href": "apiserver/OSL_Server.Configuration.Config.html", "title": "Class Config | OSL", - "keywords": "Class Config Class for configure client application Inheritance System.Object Config Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Configuration Assembly : OSL-Server.dll Syntax public class Config Fields | Improve this Doc View Source oslServerHost Declaration public static IPHostEntry oslServerHost Field Value Type Description System.Net.IPHostEntry | Improve this Doc View Source oslServerHostName Declaration public static string oslServerHostName Field Value Type Description System.String | Improve this Doc View Source oslServerHttpPort Declaration public static int oslServerHttpPort Field Value Type Description System.Int32 | Improve this Doc View Source oslServerHttpsPort Declaration public static int oslServerHttpsPort Field Value Type Description System.Int32 Methods | Improve this Doc View Source LoadConfig() Load configuration Declaration public static void LoadConfig() | Improve this Doc View Source LoadConfigCDragon() Load configuration of CDragon Declaration public static void LoadConfigCDragon() | Improve this Doc View Source LoadConfigChampSelectView1() Load configuration Champ Select View1 Declaration public static void LoadConfigChampSelectView1() | Improve this Doc View Source LoadConfigChampSelectView2() Load configuration Champ Select View2 Declaration public static void LoadConfigChampSelectView2() | Improve this Doc View Source LoadConfigChampSelectView3() Load configuration Champ Select View3 Declaration public static void LoadConfigChampSelectView3() | Improve this Doc View Source LoadConfigChampSelectView4() Load configuration Champ Select View4 Declaration public static void LoadConfigChampSelectView4() | Improve this Doc View Source LoadConfigInGameView1() Declaration public static void LoadConfigInGameView1() | Improve this Doc View Source LoadConfigInGameView2() Declaration public static void LoadConfigInGameView2() | Improve this Doc View Source LoadConfigInGameView3() Declaration public static void LoadConfigInGameView3() | Improve this Doc View Source LoadConfigOslServerHost() Declaration public static void LoadConfigOslServerHost() | Improve this Doc View Source LoadConfigServerSocket() Configuration of server socker port Declaration public static void LoadConfigServerSocket() | Improve this Doc View Source LoadConfigTimer() Load timer for champ select view Declaration public static void LoadConfigTimer() | Improve this Doc View Source LoadDefaultSession() Load Default Session for display att start information on champ select views Declaration public static void LoadDefaultSession() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView1() Load default json file for overlay view 1 Declaration public static void LoadFormatingDataConfigChampSelectView1() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView2() Load default json file for overlay view 2 Declaration public static void LoadFormatingDataConfigChampSelectView2() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView3() Load default json file for overlay view 3 Declaration public static void LoadFormatingDataConfigChampSelectView3() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView4() Load default json file for overlay view 4 Declaration public static void LoadFormatingDataConfigChampSelectView4() | Improve this Doc View Source LoadFormatingDataConfigInGameView1() Declaration public static void LoadFormatingDataConfigInGameView1() | Improve this Doc View Source LoadFormatingDataConfigInGameView2() Declaration public static void LoadFormatingDataConfigInGameView2() | Improve this Doc View Source LoadFormatingDataConfigInGameView3() Declaration public static void LoadFormatingDataConfigInGameView3()" + "keywords": "Class Config Class for configure client application Inheritance System.Object Config Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Configuration Assembly : OSL-Server.dll Syntax public class Config Fields | Improve this Doc View Source oslServerHost Declaration public static IPHostEntry oslServerHost Field Value Type Description System.Net.IPHostEntry | Improve this Doc View Source oslServerHostName Declaration public static string oslServerHostName Field Value Type Description System.String | Improve this Doc View Source oslServerHttpPort Declaration public static int oslServerHttpPort Field Value Type Description System.Int32 | Improve this Doc View Source oslServerHttpsPort Declaration public static int oslServerHttpsPort Field Value Type Description System.Int32 Methods | Improve this Doc View Source LoadConfig() Load configuration Declaration public static void LoadConfig() | Improve this Doc View Source LoadConfigCDragon() Load configuration of CDragon Declaration public static void LoadConfigCDragon() | Improve this Doc View Source LoadConfigChampSelectView1() Load configuration Champ Select View1 Declaration public static void LoadConfigChampSelectView1() | Improve this Doc View Source LoadConfigChampSelectView2() Load configuration Champ Select View2 Declaration public static void LoadConfigChampSelectView2() | Improve this Doc View Source LoadConfigChampSelectView3() Load configuration Champ Select View3 Declaration public static void LoadConfigChampSelectView3() | Improve this Doc View Source LoadConfigChampSelectView4() Load configuration Champ Select View4 Declaration public static void LoadConfigChampSelectView4() | Improve this Doc View Source LoadConfigEndGameView1Page() Declaration public static void LoadConfigEndGameView1Page() | Improve this Doc View Source LoadConfigEndGameView2Page() Declaration public static void LoadConfigEndGameView2Page() | Improve this Doc View Source LoadConfigEndGameView3Page() Declaration public static void LoadConfigEndGameView3Page() | Improve this Doc View Source LoadConfigInGameView1() Declaration public static void LoadConfigInGameView1() | Improve this Doc View Source LoadConfigInGameView2() Declaration public static void LoadConfigInGameView2() | Improve this Doc View Source LoadConfigInGameView3() Declaration public static void LoadConfigInGameView3() | Improve this Doc View Source LoadConfigOslServerHost() Load Config Osl Server Host for urls Declaration public static void LoadConfigOslServerHost() | Improve this Doc View Source LoadConfigRunesAdcPage() Declaration public static void LoadConfigRunesAdcPage() | Improve this Doc View Source LoadConfigRunesAdcSuppPage() Declaration public static void LoadConfigRunesAdcSuppPage() | Improve this Doc View Source LoadConfigRunesAllPage() Declaration public static void LoadConfigRunesAllPage() | Improve this Doc View Source LoadConfigRunesJunglePage() Declaration public static void LoadConfigRunesJunglePage() | Improve this Doc View Source LoadConfigRunesMidPage() Declaration public static void LoadConfigRunesMidPage() | Improve this Doc View Source LoadConfigRunesPage() Declaration public static void LoadConfigRunesPage() | Improve this Doc View Source LoadConfigRunesSuppPage() Declaration public static void LoadConfigRunesSuppPage() | Improve this Doc View Source LoadConfigRunesTopPage() Declaration public static void LoadConfigRunesTopPage() | Improve this Doc View Source LoadConfigServerSocket() Configuration of server socker port Declaration public static void LoadConfigServerSocket() | Improve this Doc View Source LoadConfigTimer() Load timer for champ select view Declaration public static void LoadConfigTimer() | Improve this Doc View Source LoadDefaultSession() Load Default Session for display att start information on champ select views Declaration public static void LoadDefaultSession() | Improve this Doc View Source LoadDefaultSessionEndGame() Load Default Session for display att start information on end game views Declaration public static void LoadDefaultSessionEndGame() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView1() Load default json file for overlay view 1 Declaration public static void LoadFormatingDataConfigChampSelectView1() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView2() Load default json file for overlay view 2 Declaration public static void LoadFormatingDataConfigChampSelectView2() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView3() Load default json file for overlay view 3 Declaration public static void LoadFormatingDataConfigChampSelectView3() | Improve this Doc View Source LoadFormatingDataConfigChampSelectView4() Load default json file for overlay view 4 Declaration public static void LoadFormatingDataConfigChampSelectView4() | Improve this Doc View Source LoadFormatingDataConfigEndGameView1() Declaration public static void LoadFormatingDataConfigEndGameView1() | Improve this Doc View Source LoadFormatingDataConfigEndGameView2() Declaration public static void LoadFormatingDataConfigEndGameView2() | Improve this Doc View Source LoadFormatingDataConfigEndGameView3() Declaration public static void LoadFormatingDataConfigEndGameView3() | Improve this Doc View Source LoadFormatingDataConfigInGameView1() Declaration public static void LoadFormatingDataConfigInGameView1() | Improve this Doc View Source LoadFormatingDataConfigInGameView2() Declaration public static void LoadFormatingDataConfigInGameView2() | Improve this Doc View Source LoadFormatingDataConfigInGameView3() Declaration public static void LoadFormatingDataConfigInGameView3() | Improve this Doc View Source LoadFormatingDataConfigRunesAdcPage() Declaration public static void LoadFormatingDataConfigRunesAdcPage() | Improve this Doc View Source LoadFormatingDataConfigRunesAdcSuppPage() Declaration public static void LoadFormatingDataConfigRunesAdcSuppPage() | Improve this Doc View Source LoadFormatingDataConfigRunesAllPage() Declaration public static void LoadFormatingDataConfigRunesAllPage() | Improve this Doc View Source LoadFormatingDataConfigRunesJunglePage() Declaration public static void LoadFormatingDataConfigRunesJunglePage() | Improve this Doc View Source LoadFormatingDataConfigRunesMidPage() Declaration public static void LoadFormatingDataConfigRunesMidPage() | Improve this Doc View Source LoadFormatingDataConfigRunesSuppPage() Declaration public static void LoadFormatingDataConfigRunesSuppPage() | Improve this Doc View Source LoadFormatingDataConfigRunesTopPage() Declaration public static void LoadFormatingDataConfigRunesTopPage() | Improve this Doc View Source LoadWebRiotApiKey() Declaration public static void LoadWebRiotApiKey()" }, "apiserver/OSL_Server.Configuration.html": { "href": "apiserver/OSL_Server.Configuration.html", "title": "Namespace OSL_Server.Configuration | OSL", "keywords": "Namespace OSL_Server.Configuration Classes Config Class for configure client application" }, - "apiserver/OSL_Server.Data.html": { - "href": "apiserver/OSL_Server.Data.html", - "title": "Namespace OSL_Server.Data | OSL", - "keywords": "Namespace OSL_Server.Data Classes WeatherForecast WeatherForecastService" - }, - "apiserver/OSL_Server.Data.WeatherForecast.html": { - "href": "apiserver/OSL_Server.Data.WeatherForecast.html", - "title": "Class WeatherForecast | OSL", - "keywords": "Class WeatherForecast Inheritance System.Object WeatherForecast Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Data Assembly : OSL-Server.dll Syntax public class WeatherForecast Properties | Improve this Doc View Source Date Declaration public DateTime Date { get; set; } Property Value Type Description DateTime | Improve this Doc View Source Summary Declaration public string Summary { get; set; } Property Value Type Description System.String | Improve this Doc View Source TemperatureC Declaration public int TemperatureC { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TemperatureF Declaration public int TemperatureF { get; } Property Value Type Description System.Int32" - }, - "apiserver/OSL_Server.Data.WeatherForecastService.html": { - "href": "apiserver/OSL_Server.Data.WeatherForecastService.html", - "title": "Class WeatherForecastService | OSL", - "keywords": "Class WeatherForecastService Inheritance System.Object WeatherForecastService Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Data Assembly : OSL-Server.dll Syntax public class WeatherForecastService Methods | Improve this Doc View Source GetForecastAsync(DateTime) Declaration public Task GetForecastAsync(DateTime startDate) Parameters Type Name Description DateTime startDate Returns Type Description Task < WeatherForecast []>" - }, "apiserver/OSL_Server.DataLoader.CDragon.CDragon.Download.html": { "href": "apiserver/OSL_Server.DataLoader.CDragon.CDragon.Download.html", "title": "Class CDragon.Download | OSL", @@ -314,6 +309,41 @@ "title": "Class SummonerSpells | OSL", "keywords": "Class SummonerSpells SummonerSpells information Inheritance System.Object SummonerSpells Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.CDragon Assembly : OSL-Server.dll Syntax public class SummonerSpells Properties | Improve this Doc View Source IconPath Declaration public string IconPath { get; set; } Property Value Type Description System.String | Improve this Doc View Source Id Declaration public int Id { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Name Declaration public string Name { get; set; } Property Value Type Description System.String" }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.html", + "title": "Namespace OSL_Server.DataLoader.WebApiRiot | OSL", + "keywords": "Namespace OSL_Server.DataLoader.WebApiRiot Classes Match_V5 Spectator_V4 Summoner_V4 SummonerDTO UrlRequest WebApiRiot Connect and get data from web riot api." + }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html", + "title": "Class Match_V5 | OSL", + "keywords": "Class Match_V5 Inheritance System.Object Match_V5 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.WebApiRiot Assembly : OSL-Server.dll Syntax public class Match_V5 Methods | Improve this Doc View Source ByPuuid(String, Int64, Int64, Int32, String, Int32, Int32) Declaration public static string ByPuuid(string puuid, long startTime = -1L, long endTime = -1L, int queue = -1, string type = \"\", int start = -1, int count = -1) Parameters Type Name Description System.String puuid System.Int64 startTime System.Int64 endTime System.Int32 queue System.String type System.Int32 start System.Int32 count Returns Type Description System.String | Improve this Doc View Source Matches(Int64) Declaration public static string Matches(long matchId) Parameters Type Name Description System.Int64 matchId Returns Type Description System.String | Improve this Doc View Source Timeline(Int64) Declaration public static string Timeline(long matchId) Parameters Type Name Description System.Int64 matchId Returns Type Description System.String" + }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html", + "title": "Class Spectator_V4 | OSL", + "keywords": "Class Spectator_V4 Inheritance System.Object Spectator_V4 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.WebApiRiot Assembly : OSL-Server.dll Syntax public class Spectator_V4 Methods | Improve this Doc View Source BySummoner(String) Declaration public static string BySummoner(string encryptedSummonerId) Parameters Type Name Description System.String encryptedSummonerId Returns Type Description System.String" + }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html", + "title": "Class Summoner_V4 | OSL", + "keywords": "Class Summoner_V4 Inheritance System.Object Summoner_V4 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.WebApiRiot Assembly : OSL-Server.dll Syntax public class Summoner_V4 Methods | Improve this Doc View Source ByAccount(String) Declaration public static string ByAccount(string encryptedAccountId) Parameters Type Name Description System.String encryptedAccountId Returns Type Description System.String | Improve this Doc View Source ByName(String) Declaration public static string ByName(string summonerName) Parameters Type Name Description System.String summonerName Returns Type Description System.String | Improve this Doc View Source ByPuuid(String) Declaration public static string ByPuuid(string encryptedPUUID) Parameters Type Name Description System.String encryptedPUUID Returns Type Description System.String | Improve this Doc View Source BySummonerId(String) Declaration public static string BySummonerId(string encryptedSummonerId) Parameters Type Name Description System.String encryptedSummonerId Returns Type Description System.String" + }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html", + "title": "Class SummonerDTO | OSL", + "keywords": "Class SummonerDTO Inheritance System.Object SummonerDTO Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.WebApiRiot Assembly : OSL-Server.dll Syntax public class SummonerDTO Properties | Improve this Doc View Source AccountId Declaration public string AccountId { get; set; } Property Value Type Description System.String | Improve this Doc View Source Id Declaration public string Id { get; set; } Property Value Type Description System.String | Improve this Doc View Source Name Declaration public string Name { get; set; } Property Value Type Description System.String | Improve this Doc View Source ProfileIconId Declaration public int ProfileIconId { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Puuid Declaration public string Puuid { get; set; } Property Value Type Description System.String | Improve this Doc View Source RevisionDate Declaration public long RevisionDate { get; set; } Property Value Type Description System.Int64 | Improve this Doc View Source SummonerLevel Declaration public long SummonerLevel { get; set; } Property Value Type Description System.Int64" + }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html", + "title": "Class UrlRequest | OSL", + "keywords": "Class UrlRequest Inheritance System.Object UrlRequest Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.WebApiRiot Assembly : OSL-Server.dll Syntax public class UrlRequest Fields | Improve this Doc View Source lolSummonerV4SummonersByname Declaration public static readonly string lolSummonerV4SummonersByname Field Value Type Description System.String" + }, + "apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html": { + "href": "apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html", + "title": "Class WebApiRiot | OSL", + "keywords": "Class WebApiRiot Connect and get data from web riot api. Inheritance System.Object WebApiRiot Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataLoader.WebApiRiot Assembly : OSL-Server.dll Syntax public class WebApiRiot Fields | Improve this Doc View Source apiKey Declaration public static string apiKey Field Value Type Description System.String Methods | Improve this Doc View Source GetResponseWebApiRiot() Declaration public static void GetResponseWebApiRiot() | Improve this Doc View Source RequestWebApiRiot(String) Declaration public static string RequestWebApiRiot(string urlRequest) Parameters Type Name Description System.String urlRequest Returns Type Description System.String" + }, "apiserver/OSL_Server.DataReciveClient.GameFlowPhaseStatus.html": { "href": "apiserver/OSL_Server.DataReciveClient.GameFlowPhaseStatus.html", "title": "Class GameFlowPhaseStatus | OSL", @@ -364,6 +394,51 @@ "title": "Class Timer | OSL", "keywords": "Class Timer Timer json Inheritance System.Object Timer Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.ChampSelect Assembly : OSL-Server.dll Syntax public class Timer Properties | Improve this Doc View Source AdjustedTimeLeftInPhase Declaration public int AdjustedTimeLeftInPhase { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source AdjustedTimeLeftInPhaseInSec Declaration public long AdjustedTimeLeftInPhaseInSec { get; set; } Property Value Type Description System.Int64 | Improve this Doc View Source InternalNowInEpochMs Declaration public long InternalNowInEpochMs { get; set; } Property Value Type Description System.Int64 | Improve this Doc View Source Phase Declaration public string Phase { get; set; } Property Value Type Description System.String | Improve this Doc View Source TotalTimeInPhase Declaration public int TotalTimeInPhase { get; set; } Property Value Type Description System.Int32" }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html", + "title": "Class EndGameInfo.Bans | OSL", + "keywords": "Class EndGameInfo.Bans Inheritance System.Object EndGameInfo.Bans Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.EndGame Assembly : OSL-Server.dll Syntax public class Bans Properties | Improve this Doc View Source championId Declaration public int championId { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source pickTurn Declaration public int pickTurn { get; set; } Property Value Type Description System.Int32" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html", + "title": "Class EndGameInfo.Events | OSL", + "keywords": "Class EndGameInfo.Events Inheritance System.Object EndGameInfo.Events Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.EndGame Assembly : OSL-Server.dll Syntax public class Events Properties | Improve this Doc View Source killerTeamId Declaration public int killerTeamId { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source monsterSubType Declaration public string monsterSubType { get; set; } Property Value Type Description System.String | Improve this Doc View Source monsterType Declaration public string monsterType { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html", + "title": "Class EndGameInfo | OSL", + "keywords": "Class EndGameInfo Inheritance System.Object EndGameInfo Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.EndGame Assembly : OSL-Server.dll Syntax public class EndGameInfo Fields | Improve this Doc View Source infoEndGame Declaration public static EndGameInfo.InfoEndGame infoEndGame Field Value Type Description EndGameInfo.InfoEndGame | Improve this Doc View Source jsonContentEndOfMatch Declaration public static dynamic jsonContentEndOfMatch Field Value Type Description System.Object | Improve this Doc View Source jsonContentMatch Declaration public static dynamic jsonContentMatch Field Value Type Description System.Object | Improve this Doc View Source jsonContentTimeline Declaration public static dynamic jsonContentTimeline Field Value Type Description System.Object Methods | Improve this Doc View Source EndGame(String) Declaration public static void EndGame(string content) Parameters Type Name Description System.String content" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html", + "title": "Class EndGameInfo.InfoEndGame | OSL", + "keywords": "Class EndGameInfo.InfoEndGame Inheritance System.Object EndGameInfo.InfoEndGame Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.EndGame Assembly : OSL-Server.dll Syntax public class InfoEndGame Properties | Improve this Doc View Source bans Declaration public CategoryTypes.List bans { get; set; } Property Value Type Description MudBlazor.CategoryTypes.List < EndGameInfo.Bans > | Improve this Doc View Source events Declaration public CategoryTypes.List events { get; set; } Property Value Type Description MudBlazor.CategoryTypes.List < EndGameInfo.Events > | Improve this Doc View Source gameLength Declaration public string gameLength { get; set; } Property Value Type Description System.String | Improve this Doc View Source summonerInfos Declaration public CategoryTypes.List summonerInfos { get; set; } Property Value Type Description MudBlazor.CategoryTypes.List < EndGameInfo.SummonerInfo >" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html", + "title": "Class EndGameInfo.Stats | OSL", + "keywords": "Class EndGameInfo.Stats Inheritance System.Object EndGameInfo.Stats Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.EndGame Assembly : OSL-Server.dll Syntax public class Stats Properties | Improve this Doc View Source assist Declaration public int assist { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageDeal Declaration public int damageDeal { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageDealToBuildings Declaration public int damageDealToBuildings { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageDealToChampions Declaration public int damageDealToChampions { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageDealToObjectives Declaration public int damageDealToObjectives { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageDealToTurrets Declaration public int damageDealToTurrets { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageSelftMitigated Declaration public int damageSelftMitigated { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source damageTaken Declaration public int damageTaken { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source deaths Declaration public int deaths { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source farm Declaration public int farm { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source gold Declaration public int gold { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source heal Declaration public int heal { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source kill Declaration public int kill { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source level Declaration public int level { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source magicDamageDealToChampion Declaration public int magicDamageDealToChampion { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source physicalDamageDealToChampion Declaration public int physicalDamageDealToChampion { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source trueDamageDealToChampion Declaration public int trueDamageDealToChampion { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source visionScore Declaration public int visionScore { get; set; } Property Value Type Description System.Int32" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html", + "title": "Class EndGameInfo.SummonerInfo | OSL", + "keywords": "Class EndGameInfo.SummonerInfo Inheritance System.Object EndGameInfo.SummonerInfo Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.EndGame Assembly : OSL-Server.dll Syntax public class SummonerInfo Properties | Improve this Doc View Source championName Declaration public string championName { get; set; } Property Value Type Description System.String | Improve this Doc View Source championSquarePortraitPath Declaration public string championSquarePortraitPath { get; set; } Property Value Type Description System.String | Improve this Doc View Source items Declaration public CategoryTypes.List items { get; set; } Property Value Type Description MudBlazor.CategoryTypes.List < System.Int32 > | Improve this Doc View Source stats Declaration public EndGameInfo.Stats stats { get; set; } Property Value Type Description EndGameInfo.Stats | Improve this Doc View Source summonerName Declaration public string summonerName { get; set; } Property Value Type Description System.String | Improve this Doc View Source teamId Declaration public int teamId { get; set; } Property Value Type Description System.Int32" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.EndGame.html", + "title": "Namespace OSL_Server.DataReciveClient.Processing.EndGame | OSL", + "keywords": "Namespace OSL_Server.DataReciveClient.Processing.EndGame Classes EndGameInfo EndGameInfo.Bans EndGameInfo.Events EndGameInfo.InfoEndGame EndGameInfo.Stats EndGameInfo.SummonerInfo" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.InGame.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.InGame.html", + "title": "Namespace OSL_Server.DataReciveClient.Processing.InGame | OSL", + "keywords": "Namespace OSL_Server.DataReciveClient.Processing.InGame Classes InGameInfo" + }, + "apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html": { + "href": "apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html", + "title": "Class InGameInfo | OSL", + "keywords": "Class InGameInfo Inheritance System.Object InGameInfo Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.DataReciveClient.Processing.InGame Assembly : OSL-Server.dll Syntax public class InGameInfo Fields | Improve this Doc View Source firstCall Declaration public static bool firstCall Field Value Type Description System.Boolean Methods | Improve this Doc View Source InGame(String) Declaration public static void InGame(string content) Parameters Type Name Description System.String content" + }, "apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html": { "href": "apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html", "title": "Class ReciveFromClient | OSL", @@ -409,85 +484,145 @@ "title": "Class CDragonPage | OSL", "keywords": "Class CDragonPage CDragon Page Inheritance System.Object CDragonPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class CDragonPage Methods | Improve this Doc View Source UpdateManual() Launch on thread download of last version of league of legends data Declaration public static void UpdateManual()" }, - "apiserver/OSL_Server.Pages.ChampSelectPage.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectPage.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html", "title": "Class ChampSelectPage | OSL", - "keywords": "Class ChampSelectPage Champ Select Page Inheritance System.Object ChampSelectPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ChampSelectPage Fields | Improve this Doc View Source colorPickerOverlay1 Declaration public static string colorPickerOverlay1 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay2 Declaration public static string colorPickerOverlay2 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay3 Declaration public static string colorPickerOverlay3 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay4 Declaration public static string colorPickerOverlay4 Field Value Type Description System.String | Improve this Doc View Source colorValue Declaration public static string colorValue Field Value Type Description System.String" + "keywords": "Class ChampSelectPage Champ Select Page Inheritance System.Object ChampSelectPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class ChampSelectPage Fields | Improve this Doc View Source colorPickerOverlay1 Declaration public static string colorPickerOverlay1 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay2 Declaration public static string colorPickerOverlay2 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay3 Declaration public static string colorPickerOverlay3 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay4 Declaration public static string colorPickerOverlay4 Field Value Type Description System.String | Improve this Doc View Source colorValue Declaration public static string colorValue Field Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html", "title": "Class ChampSelectPage.TextValueOverlayView1 | OSL", - "keywords": "Class ChampSelectPage.TextValueOverlayView1 Text and value for display color, information on champ select view 1 Inheritance System.Object ChampSelectPage.TextValueOverlayView1 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView1 Fields | Improve this Doc View Source BlueSideBorderColorNotSet Declaration public static string BlueSideBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source BlueSideTimerBorderColorNotSet Declaration public static string BlueSideTimerBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideBorderColorNotSet Declaration public static string RedSideBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideTimerBorderColorNotSet Declaration public static string RedSideTimerBorderColorNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BlueSideBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideTimerBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueTeamSubtext Declaration [StringLength(30, ErrorMessage = \"Name is too long (30 character limit).\")] public string BlueTeamSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplaySummonerSpell Declaration public bool DisplaySummonerSpell { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source OverlayBackground Declaration public bool OverlayBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedSideBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideTimerBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedTeamSubtext Declaration [StringLength(30, ErrorMessage = \"Name is too long (30 character limit).\")] public string RedTeamSubtext { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueSideBorderColorSubmit() Declaration public static void BlueSideBorderColorSubmit() | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source BlueSideTeamSubtextSubmit() Declaration public static void BlueSideTeamSubtextSubmit() | Improve this Doc View Source BlueSideTimerBorderColorSubmit() Declaration public static void BlueSideTimerBorderColorSubmit() | Improve this Doc View Source DisplaySummonerSpellSubmit() Declaration public static void DisplaySummonerSpellSubmit() | Improve this Doc View Source OverlayBackgroundSubmit() Declaration public static void OverlayBackgroundSubmit() | Improve this Doc View Source RedSideBorderColorSubmit() Declaration public static void RedSideBorderColorSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source RedSideTeamSubtextSubmit() Declaration public static void RedSideTeamSubtextSubmit() | Improve this Doc View Source RedSideTimerBorderColorSubmit() Declaration public static void RedSideTimerBorderColorSubmit() | Improve this Doc View Source SetBanBackgroundColor() Declaration public static void SetBanBackgroundColor() | Improve this Doc View Source SetBlueSideBackgroudColor() Declaration public static void SetBlueSideBackgroudColor() | Improve this Doc View Source SetBlueSideBorderColor() Declaration public static void SetBlueSideBorderColor() | Improve this Doc View Source SetBlueSideTexteColor() Declaration public static void SetBlueSideTexteColor() | Improve this Doc View Source SetBlueSideTimerBackgroudColor() Declaration public static void SetBlueSideTimerBackgroudColor() | Improve this Doc View Source SetBlueSideTimerBorderColor() Declaration public static void SetBlueSideTimerBorderColor() | Improve this Doc View Source SetBlueSideTimerTexteColor() Declaration public static void SetBlueSideTimerTexteColor() | Improve this Doc View Source SetBlueTeamNameColor() Declaration public static void SetBlueTeamNameColor() | Improve this Doc View Source SetBlueTeamSubtextColor() Declaration public static void SetBlueTeamSubtextColor() | Improve this Doc View Source SetRedSideBackgroudColor() Declaration public static void SetRedSideBackgroudColor() | Improve this Doc View Source SetRedSideBorderColor() Declaration public static void SetRedSideBorderColor() | Improve this Doc View Source SetRedSideTexteColor() Declaration public static void SetRedSideTexteColor() | Improve this Doc View Source SetRedSideTimerBackgroudColor() Declaration public static void SetRedSideTimerBackgroudColor() | Improve this Doc View Source SetRedSideTimerBorderColor() Declaration public static void SetRedSideTimerBorderColor() | Improve this Doc View Source SetRedSideTimerTexteColor() Declaration public static void SetRedSideTimerTexteColor() | Improve this Doc View Source SetRedTeamNameColor() Declaration public static void SetRedTeamNameColor() | Improve this Doc View Source SetRedTeamSubtextColor() Declaration public static void SetRedTeamSubtextColor() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBlueSideBorderColor() Declaration public static string TempsBlueSideBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsBlueSideTimerBorderColor() Declaration public static string TempsBlueSideTimerBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsRedSideBorderColor() Declaration public static string TempsRedSideBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsRedSideTimerBorderColor() Declaration public static string TempsRedSideTimerBorderColor() Returns Type Description System.String" + "keywords": "Class ChampSelectPage.TextValueOverlayView1 Text and value for display color, information on champ select view 1 Inheritance System.Object ChampSelectPage.TextValueOverlayView1 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class TextValueOverlayView1 Fields | Improve this Doc View Source BlueSideBorderColorNotSet Declaration public static string BlueSideBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source BlueSideTimerBorderColorNotSet Declaration public static string BlueSideTimerBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideBorderColorNotSet Declaration public static string RedSideBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideTimerBorderColorNotSet Declaration public static string RedSideTimerBorderColorNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BlueSideBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideTimerBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueTeamSubtext Declaration [StringLength(30, ErrorMessage = \"Name is too long (30 character limit).\")] public string BlueTeamSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplaySummonerSpell Declaration public bool DisplaySummonerSpell { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source OverlayBackground Declaration public bool OverlayBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedSideBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideTimerBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedTeamSubtext Declaration [StringLength(30, ErrorMessage = \"Name is too long (30 character limit).\")] public string RedTeamSubtext { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueSideBorderColorSubmit() Declaration public static void BlueSideBorderColorSubmit() | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source BlueSideTeamSubtextSubmit() Declaration public static void BlueSideTeamSubtextSubmit() | Improve this Doc View Source BlueSideTimerBorderColorSubmit() Declaration public static void BlueSideTimerBorderColorSubmit() | Improve this Doc View Source DisplaySummonerSpellSubmit() Declaration public static void DisplaySummonerSpellSubmit() | Improve this Doc View Source OverlayBackgroundSubmit() Declaration public static void OverlayBackgroundSubmit() | Improve this Doc View Source RedSideBorderColorSubmit() Declaration public static void RedSideBorderColorSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source RedSideTeamSubtextSubmit() Declaration public static void RedSideTeamSubtextSubmit() | Improve this Doc View Source RedSideTimerBorderColorSubmit() Declaration public static void RedSideTimerBorderColorSubmit() | Improve this Doc View Source SetBanBackgroundColor() Declaration public static void SetBanBackgroundColor() | Improve this Doc View Source SetBlueSideBackgroudColor() Declaration public static void SetBlueSideBackgroudColor() | Improve this Doc View Source SetBlueSideBorderColor() Declaration public static void SetBlueSideBorderColor() | Improve this Doc View Source SetBlueSideTexteColor() Declaration public static void SetBlueSideTexteColor() | Improve this Doc View Source SetBlueSideTimerBackgroudColor() Declaration public static void SetBlueSideTimerBackgroudColor() | Improve this Doc View Source SetBlueSideTimerBorderColor() Declaration public static void SetBlueSideTimerBorderColor() | Improve this Doc View Source SetBlueSideTimerTexteColor() Declaration public static void SetBlueSideTimerTexteColor() | Improve this Doc View Source SetBlueTeamNameColor() Declaration public static void SetBlueTeamNameColor() | Improve this Doc View Source SetBlueTeamSubtextColor() Declaration public static void SetBlueTeamSubtextColor() | Improve this Doc View Source SetRedSideBackgroudColor() Declaration public static void SetRedSideBackgroudColor() | Improve this Doc View Source SetRedSideBorderColor() Declaration public static void SetRedSideBorderColor() | Improve this Doc View Source SetRedSideTexteColor() Declaration public static void SetRedSideTexteColor() | Improve this Doc View Source SetRedSideTimerBackgroudColor() Declaration public static void SetRedSideTimerBackgroudColor() | Improve this Doc View Source SetRedSideTimerBorderColor() Declaration public static void SetRedSideTimerBorderColor() | Improve this Doc View Source SetRedSideTimerTexteColor() Declaration public static void SetRedSideTimerTexteColor() | Improve this Doc View Source SetRedTeamNameColor() Declaration public static void SetRedTeamNameColor() | Improve this Doc View Source SetRedTeamSubtextColor() Declaration public static void SetRedTeamSubtextColor() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBlueSideBorderColor() Declaration public static string TempsBlueSideBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsBlueSideTimerBorderColor() Declaration public static string TempsBlueSideTimerBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsRedSideBorderColor() Declaration public static string TempsRedSideBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsRedSideTimerBorderColor() Declaration public static string TempsRedSideTimerBorderColor() Returns Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html", "title": "Class ChampSelectPage.TextValueOverlayView2 | OSL", - "keywords": "Class ChampSelectPage.TextValueOverlayView2 Text and value for display color, information on champ select view 2 Inheritance System.Object ChampSelectPage.TextValueOverlayView2 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView2 Properties | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source EnableTimer Declaration public bool EnableTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source KeystonePickColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int KeystonePickColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source KeystonePickColorSubmit() Declaration public static void KeystonePickColorSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source SetBanBackgroundColor() Declaration public static void SetBanBackgroundColor() | Improve this Doc View Source SetBlueSideBackgroud() Declaration public static void SetBlueSideBackgroud() | Improve this Doc View Source SetBlueSideBackgroudSummonerPick() Declaration public static void SetBlueSideBackgroudSummonerPick() | Improve this Doc View Source SetBlueSideBackgroudSummonerPickEnd() Declaration public static void SetBlueSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetBlueSideSummoner() Declaration public static void SetBlueSideSummoner() | Improve this Doc View Source SetBlueSideTeamNameColor() Declaration public static void SetBlueSideTeamNameColor() | Improve this Doc View Source SetKeystoneColor1() Declaration public static void SetKeystoneColor1() | Improve this Doc View Source SetKeystoneColor2() Declaration public static void SetKeystoneColor2() | Improve this Doc View Source SetRedSideBackgroud() Declaration public static void SetRedSideBackgroud() | Improve this Doc View Source SetRedSideBackgroudSummonerPick() Declaration public static void SetRedSideBackgroudSummonerPick() | Improve this Doc View Source SetRedSideBackgroudSummonerPickEnd() Declaration public static void SetRedSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetRedSideSummoner() Declaration public static void SetRedSideSummoner() | Improve this Doc View Source SetRedSideTeamNameColor() Declaration public static void SetRedSideTeamNameColor() | Improve this Doc View Source SetTimerBackground() Declaration public static void SetTimerBackground() | Improve this Doc View Source SetTimerBlue() Declaration public static void SetTimerBlue() | Improve this Doc View Source SetTimerRed() Declaration public static void SetTimerRed() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TimerSubmit() Declaration public static void TimerSubmit()" + "keywords": "Class ChampSelectPage.TextValueOverlayView2 Text and value for display color, information on champ select view 2 Inheritance System.Object ChampSelectPage.TextValueOverlayView2 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class TextValueOverlayView2 Properties | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source EnableTimer Declaration public bool EnableTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source KeystonePickColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int KeystonePickColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source KeystonePickColorSubmit() Declaration public static void KeystonePickColorSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source SetBanBackgroundColor() Declaration public static void SetBanBackgroundColor() | Improve this Doc View Source SetBlueSideBackgroud() Declaration public static void SetBlueSideBackgroud() | Improve this Doc View Source SetBlueSideBackgroudSummonerPick() Declaration public static void SetBlueSideBackgroudSummonerPick() | Improve this Doc View Source SetBlueSideBackgroudSummonerPickEnd() Declaration public static void SetBlueSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetBlueSideSummoner() Declaration public static void SetBlueSideSummoner() | Improve this Doc View Source SetBlueSideTeamNameColor() Declaration public static void SetBlueSideTeamNameColor() | Improve this Doc View Source SetKeystoneColor1() Declaration public static void SetKeystoneColor1() | Improve this Doc View Source SetKeystoneColor2() Declaration public static void SetKeystoneColor2() | Improve this Doc View Source SetRedSideBackgroud() Declaration public static void SetRedSideBackgroud() | Improve this Doc View Source SetRedSideBackgroudSummonerPick() Declaration public static void SetRedSideBackgroudSummonerPick() | Improve this Doc View Source SetRedSideBackgroudSummonerPickEnd() Declaration public static void SetRedSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetRedSideSummoner() Declaration public static void SetRedSideSummoner() | Improve this Doc View Source SetRedSideTeamNameColor() Declaration public static void SetRedSideTeamNameColor() | Improve this Doc View Source SetTimerBackground() Declaration public static void SetTimerBackground() | Improve this Doc View Source SetTimerBlue() Declaration public static void SetTimerBlue() | Improve this Doc View Source SetTimerRed() Declaration public static void SetTimerRed() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TimerSubmit() Declaration public static void TimerSubmit()" }, - "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html", "title": "Class ChampSelectPage.TextValueOverlayView3 | OSL", - "keywords": "Class ChampSelectPage.TextValueOverlayView3 Text and value for display color, information on champ select view 3 Inheritance System.Object ChampSelectPage.TextValueOverlayView3 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView3 Properties | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source EnableTimer Declaration public bool EnableTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source KeystonePickColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int KeystonePickColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent1 Declaration [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source KeystonePickColorSubmit() Declaration public static void KeystonePickColorSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source SetBanBackgroundColor() Declaration public static void SetBanBackgroundColor() | Improve this Doc View Source SetBlueSideBackgroud() Declaration public static void SetBlueSideBackgroud() | Improve this Doc View Source SetBlueSideBackgroudSummonerPick() Declaration public static void SetBlueSideBackgroudSummonerPick() | Improve this Doc View Source SetBlueSideBackgroudSummonerPickEnd() Declaration public static void SetBlueSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetBlueSideSummoner() Declaration public static void SetBlueSideSummoner() | Improve this Doc View Source SetBlueSideTeamNameColor() Declaration public static void SetBlueSideTeamNameColor() | Improve this Doc View Source SetKeystoneColor1() Declaration public static void SetKeystoneColor1() | Improve this Doc View Source SetKeystoneColor2() Declaration public static void SetKeystoneColor2() | Improve this Doc View Source SetRedSideBackgroud() Declaration public static void SetRedSideBackgroud() | Improve this Doc View Source SetRedSideBackgroudSummonerPick() Declaration public static void SetRedSideBackgroudSummonerPick() | Improve this Doc View Source SetRedSideBackgroudSummonerPickEnd() Declaration public static void SetRedSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetRedSideSummoner() Declaration public static void SetRedSideSummoner() | Improve this Doc View Source SetRedSideTeamNameColor() Declaration public static void SetRedSideTeamNameColor() | Improve this Doc View Source SetTimerBackground() Declaration public static void SetTimerBackground() | Improve this Doc View Source SetTimerBlue() Declaration public static void SetTimerBlue() | Improve this Doc View Source SetTimerRed() Declaration public static void SetTimerRed() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TimerSubmit() Declaration public static void TimerSubmit()" + "keywords": "Class ChampSelectPage.TextValueOverlayView3 Text and value for display color, information on champ select view 3 Inheritance System.Object ChampSelectPage.TextValueOverlayView3 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class TextValueOverlayView3 Properties | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source EnableTimer Declaration public bool EnableTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source KeystonePickColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int KeystonePickColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent1 Declaration [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source KeystonePickColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int KeystonePickColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source KeystonePickColorSubmit() Declaration public static void KeystonePickColorSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source SetBanBackgroundColor() Declaration public static void SetBanBackgroundColor() | Improve this Doc View Source SetBlueSideBackgroud() Declaration public static void SetBlueSideBackgroud() | Improve this Doc View Source SetBlueSideBackgroudSummonerPick() Declaration public static void SetBlueSideBackgroudSummonerPick() | Improve this Doc View Source SetBlueSideBackgroudSummonerPickEnd() Declaration public static void SetBlueSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetBlueSideSummoner() Declaration public static void SetBlueSideSummoner() | Improve this Doc View Source SetBlueSideTeamNameColor() Declaration public static void SetBlueSideTeamNameColor() | Improve this Doc View Source SetKeystoneColor1() Declaration public static void SetKeystoneColor1() | Improve this Doc View Source SetKeystoneColor2() Declaration public static void SetKeystoneColor2() | Improve this Doc View Source SetRedSideBackgroud() Declaration public static void SetRedSideBackgroud() | Improve this Doc View Source SetRedSideBackgroudSummonerPick() Declaration public static void SetRedSideBackgroudSummonerPick() | Improve this Doc View Source SetRedSideBackgroudSummonerPickEnd() Declaration public static void SetRedSideBackgroudSummonerPickEnd() | Improve this Doc View Source SetRedSideSummoner() Declaration public static void SetRedSideSummoner() | Improve this Doc View Source SetRedSideTeamNameColor() Declaration public static void SetRedSideTeamNameColor() | Improve this Doc View Source SetTimerBackground() Declaration public static void SetTimerBackground() | Improve this Doc View Source SetTimerBlue() Declaration public static void SetTimerBlue() | Improve this Doc View Source SetTimerRed() Declaration public static void SetTimerRed() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TimerSubmit() Declaration public static void TimerSubmit()" }, - "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html", "title": "Class ChampSelectPage.TextValueOverlayView4 | OSL", - "keywords": "Class ChampSelectPage.TextValueOverlayView4 Text and value for display color, information on champ select view 4 Inheritance System.Object ChampSelectPage.TextValueOverlayView4 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView4 Fields | Improve this Doc View Source BlueSideBorderColorBanNotSet Declaration public static string BlueSideBorderColorBanNotSet Field Value Type Description System.String | Improve this Doc View Source BlueSideBorderColorPickNotSet Declaration public static string BlueSideBorderColorPickNotSet Field Value Type Description System.String | Improve this Doc View Source BorderTopNotSet Declaration public static string BorderTopNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideBorderColorBanNotSet Declaration public static string RedSideBorderColorBanNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideBorderColorPickNotSet Declaration public static string RedSideBorderColorPickNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BackgroudGradientDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BackgroudGradientDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroudGradientPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroudGradientPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroudGradientPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroudGradientPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideBorderColorBan Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideBorderColorBan { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideBorderColorPick Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideBorderColorPick { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSubtext Declaration [StringLength(15, ErrorMessage = \"Name is too long (15 character limit).\")] public string BlueSideTeamNameSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source BorderBottomPixel Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BorderBottomPixel { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BorderTop Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BorderTop { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source EnableForegroundBackground Declaration public bool EnableForegroundBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedSideBorderColorBan Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideBorderColorBan { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideBorderColorPick Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideBorderColorPick { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSubtext Declaration [StringLength(15, ErrorMessage = \"Name is too long (15 character limit).\")] public string RedSideTeamNameSubtext { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BackgroudGradientView4() Declaration public static void BackgroudGradientView4() | Improve this Doc View Source BlueSideBorderColorBanSubmit() Declaration public static void BlueSideBorderColorBanSubmit() | Improve this Doc View Source BlueSideBorderColorPickSubmit() Declaration public static void BlueSideBorderColorPickSubmit() | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source BlueSideTeamNameSubtextSubmit() Declaration public static void BlueSideTeamNameSubtextSubmit() | Improve this Doc View Source BorderBottomPixelSubmit() Declaration public static void BorderBottomPixelSubmit() | Improve this Doc View Source BorderTopSubmit() Declaration public static void BorderTopSubmit() | Improve this Doc View Source OverlayForegoundSubmit() Declaration public static void OverlayForegoundSubmit() | Improve this Doc View Source RedSideBorderColorBanSubmit() Declaration public static void RedSideBorderColorBanSubmit() | Improve this Doc View Source RedSideBorderColorPickSubmit() Declaration public static void RedSideBorderColorPickSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source RedSideTeamNameSubtextSubmit() Declaration public static void RedSideTeamNameSubtextSubmit() | Improve this Doc View Source SetBackgroudGradientColor1() Declaration public static void SetBackgroudGradientColor1() | Improve this Doc View Source SetBackgroudGradientColor2() Declaration public static void SetBackgroudGradientColor2() | Improve this Doc View Source SetBlueSideBorderColorBan() Declaration public static void SetBlueSideBorderColorBan() | Improve this Doc View Source SetBlueSideBorderColorPick() Declaration public static void SetBlueSideBorderColorPick() | Improve this Doc View Source SetBlueSideColorSubText() Declaration public static void SetBlueSideColorSubText() | Improve this Doc View Source SetBlueSideColorText() Declaration public static void SetBlueSideColorText() | Improve this Doc View Source SetBlueSideColorTextBan() Declaration public static void SetBlueSideColorTextBan() | Improve this Doc View Source SetBlueSideColorTextPick() Declaration public static void SetBlueSideColorTextPick() | Improve this Doc View Source SetBorderTop() Declaration public static void SetBorderTop() | Improve this Doc View Source SetRedSideBorderColorBan() Declaration public static void SetRedSideBorderColorBan() | Improve this Doc View Source SetRedSideBorderColorPick() Declaration public static void SetRedSideBorderColorPick() | Improve this Doc View Source SetRedSideColorSubText() Declaration public static void SetRedSideColorSubText() | Improve this Doc View Source SetRedSideColorText() Declaration public static void SetRedSideColorText() | Improve this Doc View Source SetRedSideColorTextBan() Declaration public static void SetRedSideColorTextBan() | Improve this Doc View Source SetRedSideColorTextPick() Declaration public static void SetRedSideColorTextPick() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBlueSideBorderColorBan() Declaration public static string TempsBlueSideBorderColorBan() Returns Type Description System.String | Improve this Doc View Source TempsBlueSideBorderColorPick() Declaration public static string TempsBlueSideBorderColorPick() Returns Type Description System.String | Improve this Doc View Source TempsBorderTop() Declaration public static string TempsBorderTop() Returns Type Description System.String | Improve this Doc View Source TempsRedSideBorderColorBan() Declaration public static string TempsRedSideBorderColorBan() Returns Type Description System.String | Improve this Doc View Source TempsRedSideBorderColorPick() Declaration public static string TempsRedSideBorderColorPick() Returns Type Description System.String" + "keywords": "Class ChampSelectPage.TextValueOverlayView4 Text and value for display color, information on champ select view 4 Inheritance System.Object ChampSelectPage.TextValueOverlayView4 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class TextValueOverlayView4 Fields | Improve this Doc View Source BlueSideBorderColorBanNotSet Declaration public static string BlueSideBorderColorBanNotSet Field Value Type Description System.String | Improve this Doc View Source BlueSideBorderColorPickNotSet Declaration public static string BlueSideBorderColorPickNotSet Field Value Type Description System.String | Improve this Doc View Source BorderTopNotSet Declaration public static string BorderTopNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideBorderColorBanNotSet Declaration public static string RedSideBorderColorBanNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideBorderColorPickNotSet Declaration public static string RedSideBorderColorPickNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BackgroudGradientDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BackgroudGradientDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroudGradientPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroudGradientPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroudGradientPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroudGradientPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideBorderColorBan Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideBorderColorBan { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideBorderColorPick Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideBorderColorPick { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BlueSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSubtext Declaration [StringLength(15, ErrorMessage = \"Name is too long (15 character limit).\")] public string BlueSideTeamNameSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source BorderBottomPixel Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BorderBottomPixel { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BorderTop Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BorderTop { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source EnableForegroundBackground Declaration public bool EnableForegroundBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedSideBorderColorBan Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideBorderColorBan { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideBorderColorPick Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideBorderColorPick { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RedSideTeamName Declaration [StringLength(11, ErrorMessage = \"Name is too long (11 character limit).\")] public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSubtext Declaration [StringLength(15, ErrorMessage = \"Name is too long (15 character limit).\")] public string RedSideTeamNameSubtext { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BackgroudGradientView4() Declaration public static void BackgroudGradientView4() | Improve this Doc View Source BlueSideBorderColorBanSubmit() Declaration public static void BlueSideBorderColorBanSubmit() | Improve this Doc View Source BlueSideBorderColorPickSubmit() Declaration public static void BlueSideBorderColorPickSubmit() | Improve this Doc View Source BlueSideTeamNameSubmit() Declaration public static void BlueSideTeamNameSubmit() | Improve this Doc View Source BlueSideTeamNameSubtextSubmit() Declaration public static void BlueSideTeamNameSubtextSubmit() | Improve this Doc View Source BorderBottomPixelSubmit() Declaration public static void BorderBottomPixelSubmit() | Improve this Doc View Source BorderTopSubmit() Declaration public static void BorderTopSubmit() | Improve this Doc View Source OverlayForegoundSubmit() Declaration public static void OverlayForegoundSubmit() | Improve this Doc View Source RedSideBorderColorBanSubmit() Declaration public static void RedSideBorderColorBanSubmit() | Improve this Doc View Source RedSideBorderColorPickSubmit() Declaration public static void RedSideBorderColorPickSubmit() | Improve this Doc View Source RedSideTeamNameSubmit() Declaration public static void RedSideTeamNameSubmit() | Improve this Doc View Source RedSideTeamNameSubtextSubmit() Declaration public static void RedSideTeamNameSubtextSubmit() | Improve this Doc View Source SetBackgroudGradientColor1() Declaration public static void SetBackgroudGradientColor1() | Improve this Doc View Source SetBackgroudGradientColor2() Declaration public static void SetBackgroudGradientColor2() | Improve this Doc View Source SetBlueSideBorderColorBan() Declaration public static void SetBlueSideBorderColorBan() | Improve this Doc View Source SetBlueSideBorderColorPick() Declaration public static void SetBlueSideBorderColorPick() | Improve this Doc View Source SetBlueSideColorSubText() Declaration public static void SetBlueSideColorSubText() | Improve this Doc View Source SetBlueSideColorText() Declaration public static void SetBlueSideColorText() | Improve this Doc View Source SetBlueSideColorTextBan() Declaration public static void SetBlueSideColorTextBan() | Improve this Doc View Source SetBlueSideColorTextPick() Declaration public static void SetBlueSideColorTextPick() | Improve this Doc View Source SetBorderTop() Declaration public static void SetBorderTop() | Improve this Doc View Source SetRedSideBorderColorBan() Declaration public static void SetRedSideBorderColorBan() | Improve this Doc View Source SetRedSideBorderColorPick() Declaration public static void SetRedSideBorderColorPick() | Improve this Doc View Source SetRedSideColorSubText() Declaration public static void SetRedSideColorSubText() | Improve this Doc View Source SetRedSideColorText() Declaration public static void SetRedSideColorText() | Improve this Doc View Source SetRedSideColorTextBan() Declaration public static void SetRedSideColorTextBan() | Improve this Doc View Source SetRedSideColorTextPick() Declaration public static void SetRedSideColorTextPick() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBlueSideBorderColorBan() Declaration public static string TempsBlueSideBorderColorBan() Returns Type Description System.String | Improve this Doc View Source TempsBlueSideBorderColorPick() Declaration public static string TempsBlueSideBorderColorPick() Returns Type Description System.String | Improve this Doc View Source TempsBorderTop() Declaration public static string TempsBorderTop() Returns Type Description System.String | Improve this Doc View Source TempsRedSideBorderColorBan() Declaration public static string TempsRedSideBorderColorBan() Returns Type Description System.String | Improve this Doc View Source TempsRedSideBorderColorPick() Declaration public static string TempsRedSideBorderColorPick() Returns Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html", "title": "Class ChampSelectView1Page.FormatingData | OSL", - "keywords": "Class ChampSelectView1Page.FormatingData Formating Data Inheritance System.Object ChampSelectView1Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BanBackgroundColor Declaration public string BanBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundPicture Declaration public string BanBackgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanOverlayPicture Declaration public string BanOverlayPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueLogo Declaration public string BlueLogo { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudColor Declaration public string BlueSideBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBorderColor Declaration public string BlueSideBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTexteColor Declaration public string BlueSideTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerBackgroudColor Declaration public string BlueSideTimerBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerBorderColor Declaration public string BlueSideTimerBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerTexteColor Declaration public string BlueSideTimerTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamNameColor Declaration public string BlueTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamSubtext Declaration public string BlueTeamSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamSubtextColor Declaration public string BlueTeamSubtextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayBackground Declaration public string OverlayBackground { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedLogo Declaration public string RedLogo { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudColor Declaration public string RedSideBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBorderColor Declaration public string RedSideBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTexteColor Declaration public string RedSideTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerBackgroudColor Declaration public string RedSideTimerBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerBorderColor Declaration public string RedSideTimerBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerTexteColor Declaration public string RedSideTimerTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamNameColor Declaration public string RedTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamSubtext Declaration public string RedTeamSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamSubtextColor Declaration public string RedTeamSubtextColor { get; set; } Property Value Type Description System.String" + "keywords": "Class ChampSelectView1Page.FormatingData Formating Data Inheritance System.Object ChampSelectView1Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BanBackgroundColor Declaration public string BanBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundPicture Declaration public string BanBackgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanOverlayPicture Declaration public string BanOverlayPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueLogo Declaration public string BlueLogo { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudColor Declaration public string BlueSideBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBorderColor Declaration public string BlueSideBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTexteColor Declaration public string BlueSideTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerBackgroudColor Declaration public string BlueSideTimerBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerBorderColor Declaration public string BlueSideTimerBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTimerTexteColor Declaration public string BlueSideTimerTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamNameColor Declaration public string BlueTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamSubtext Declaration public string BlueTeamSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamSubtextColor Declaration public string BlueTeamSubtextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayBackground Declaration public string OverlayBackground { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedLogo Declaration public string RedLogo { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudColor Declaration public string RedSideBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBorderColor Declaration public string RedSideBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTexteColor Declaration public string RedSideTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerBackgroudColor Declaration public string RedSideTimerBackgroudColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerBorderColor Declaration public string RedSideTimerBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTimerTexteColor Declaration public string RedSideTimerTexteColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamNameColor Declaration public string RedTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamSubtext Declaration public string RedTeamSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamSubtextColor Declaration public string RedTeamSubtextColor { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectView1Page.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView1Page.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html", "title": "Class ChampSelectView1Page | OSL", - "keywords": "Class ChampSelectView1Page Champ Select View1 Page Inheritance System.Object ChampSelectView1Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ChampSelectView1Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView1Page.FormatingData formatingData Field Value Type Description ChampSelectView1Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + "keywords": "Class ChampSelectView1Page Champ Select View1 Page Inheritance System.Object ChampSelectView1Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class ChampSelectView1Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView1Page.FormatingData formatingData Field Value Type Description ChampSelectView1Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" }, - "apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html", "title": "Class ChampSelectView2Page.FormatingData | OSL", - "keywords": "Class ChampSelectView2Page.FormatingData Inheritance System.Object ChampSelectView2Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BanBackgroundColor Declaration public string BanBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundColorSave Declaration public string BanBackgroundColorSave { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundPicture Declaration public string BanBackgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanOverlayPicture Declaration public string BanOverlayPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroud Declaration public string BlueSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPick Declaration public string BlueSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPickEnd Declaration public string BlueSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBlink Declaration public string BlueSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideSummoner Declaration public string BlueSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameColor Declaration public string BlueSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSize Declaration public string BlueSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor Declaration public string KeystonePickColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor1 Declaration public string KeystonePickColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor2 Declaration public string KeystonePickColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorDeg Declaration public string KeystonePickColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent1 Declaration public string KeystonePickColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent2 Declaration public string KeystonePickColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroud Declaration public string RedSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPick Declaration public string RedSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPickEnd Declaration public string RedSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBlink Declaration public string RedSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideSummoner Declaration public string RedSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameColor Declaration public string RedSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSize Declaration public string RedSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBackground Declaration public string TimerBackground { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBlue Declaration public string TimerBlue { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerEnd Declaration public string TimerEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerRed Declaration public string TimerRed { get; set; } Property Value Type Description System.String" + "keywords": "Class ChampSelectView2Page.FormatingData Inheritance System.Object ChampSelectView2Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BanBackgroundColor Declaration public string BanBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundColorSave Declaration public string BanBackgroundColorSave { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundPicture Declaration public string BanBackgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanOverlayPicture Declaration public string BanOverlayPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroud Declaration public string BlueSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPick Declaration public string BlueSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPickEnd Declaration public string BlueSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBlink Declaration public string BlueSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideSummoner Declaration public string BlueSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameColor Declaration public string BlueSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSize Declaration public string BlueSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor Declaration public string KeystonePickColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor1 Declaration public string KeystonePickColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor2 Declaration public string KeystonePickColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorDeg Declaration public string KeystonePickColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent1 Declaration public string KeystonePickColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent2 Declaration public string KeystonePickColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroud Declaration public string RedSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPick Declaration public string RedSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPickEnd Declaration public string RedSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBlink Declaration public string RedSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideSummoner Declaration public string RedSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameColor Declaration public string RedSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSize Declaration public string RedSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBackground Declaration public string TimerBackground { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBlue Declaration public string TimerBlue { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerEnd Declaration public string TimerEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerRed Declaration public string TimerRed { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectView2Page.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView2Page.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html", "title": "Class ChampSelectView2Page | OSL", - "keywords": "Class ChampSelectView2Page Champ Select View2 Page Inheritance System.Object ChampSelectView2Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ChampSelectView2Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView2Page.FormatingData formatingData Field Value Type Description ChampSelectView2Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + "keywords": "Class ChampSelectView2Page Champ Select View2 Page Inheritance System.Object ChampSelectView2Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class ChampSelectView2Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView2Page.FormatingData formatingData Field Value Type Description ChampSelectView2Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" }, - "apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html", "title": "Class ChampSelectView3Page.FormatingData | OSL", - "keywords": "Class ChampSelectView3Page.FormatingData Formating Data Inheritance System.Object ChampSelectView3Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BanBackgroundColor Declaration public string BanBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundColorSave Declaration public string BanBackgroundColorSave { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundPicture Declaration public string BanBackgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanOverlayPicture Declaration public string BanOverlayPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroud Declaration public string BlueSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPick Declaration public string BlueSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPickEnd Declaration public string BlueSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBlink Declaration public string BlueSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideSummoner Declaration public string BlueSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameColor Declaration public string BlueSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSize Declaration public string BlueSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor Declaration public string KeystonePickColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor1 Declaration public string KeystonePickColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor2 Declaration public string KeystonePickColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorDeg Declaration public string KeystonePickColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent1 Declaration public string KeystonePickColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent2 Declaration public string KeystonePickColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroud Declaration public string RedSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPick Declaration public string RedSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPickEnd Declaration public string RedSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBlink Declaration public string RedSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideSummoner Declaration public string RedSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameColor Declaration public string RedSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSize Declaration public string RedSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBackground Declaration public string TimerBackground { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBlue Declaration public string TimerBlue { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerEnd Declaration public string TimerEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerRed Declaration public string TimerRed { get; set; } Property Value Type Description System.String" + "keywords": "Class ChampSelectView3Page.FormatingData Formating Data Inheritance System.Object ChampSelectView3Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BanBackgroundColor Declaration public string BanBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundColorSave Declaration public string BanBackgroundColorSave { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanBackgroundPicture Declaration public string BanBackgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BanOverlayPicture Declaration public string BanOverlayPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroud Declaration public string BlueSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPick Declaration public string BlueSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBackgroudSummonerPickEnd Declaration public string BlueSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBlink Declaration public string BlueSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideSummoner Declaration public string BlueSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameColor Declaration public string BlueSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSize Declaration public string BlueSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor Declaration public string KeystonePickColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor1 Declaration public string KeystonePickColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColor2 Declaration public string KeystonePickColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorDeg Declaration public string KeystonePickColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent1 Declaration public string KeystonePickColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source KeystonePickColorPercent2 Declaration public string KeystonePickColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroud Declaration public string RedSideBackgroud { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPick Declaration public string RedSideBackgroudSummonerPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBackgroudSummonerPickEnd Declaration public string RedSideBackgroudSummonerPickEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBlink Declaration public string RedSideBlink { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideSummoner Declaration public string RedSideSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameColor Declaration public string RedSideTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSize Declaration public string RedSideTeamNameSize { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBackground Declaration public string TimerBackground { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerBlue Declaration public string TimerBlue { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerEnd Declaration public string TimerEnd { get; set; } Property Value Type Description System.String | Improve this Doc View Source TimerRed Declaration public string TimerRed { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectView3Page.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView3Page.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html", "title": "Class ChampSelectView3Page | OSL", - "keywords": "Class ChampSelectView3Page Champ Select View3 Page Inheritance System.Object ChampSelectView3Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ChampSelectView3Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView3Page.FormatingData formatingData Field Value Type Description ChampSelectView3Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + "keywords": "Class ChampSelectView3Page Champ Select View3 Page Inheritance System.Object ChampSelectView3Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class ChampSelectView3Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView3Page.FormatingData formatingData Field Value Type Description ChampSelectView3Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" }, - "apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html", "title": "Class ChampSelectView4Page.FormatingData | OSL", - "keywords": "Class ChampSelectView4Page.FormatingData Formating Data Inheritance System.Object ChampSelectView4Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor1 Declaration public string BackgroudGradientColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor2 Declaration public string BackgroudGradientColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientDeg Declaration public string BackgroudGradientDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent1 Declaration public string BackgroudGradientPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent2 Declaration public string BackgroudGradientPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBanText Declaration public string BlueSideBanText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBorderColorBan Declaration public string BlueSideBorderColorBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBorderColorPick Declaration public string BlueSideBorderColorPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSubText Declaration public string BlueSideColorSubText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorText Declaration public string BlueSideColorText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextBan Declaration public string BlueSideColorTextBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextPick Declaration public string BlueSideColorTextPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSidePickText Declaration public string BlueSidePickText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSubtext Declaration public string BlueSideTeamNameSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source BorderBottomPixel Declaration public string BorderBottomPixel { get; set; } Property Value Type Description System.String | Improve this Doc View Source BorderTop Declaration public string BorderTop { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBanText Declaration public string RedSideBanText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBorderColorBan Declaration public string RedSideBorderColorBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBorderColorPick Declaration public string RedSideBorderColorPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSubText Declaration public string RedSideColorSubText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorText Declaration public string RedSideColorText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextBan Declaration public string RedSideColorTextBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextPick Declaration public string RedSideColorTextPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSidePickText Declaration public string RedSidePickText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSubtext Declaration public string RedSideTeamNameSubtext { get; set; } Property Value Type Description System.String" + "keywords": "Class ChampSelectView4Page.FormatingData Formating Data Inheritance System.Object ChampSelectView4Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor1 Declaration public string BackgroudGradientColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor2 Declaration public string BackgroudGradientColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientDeg Declaration public string BackgroudGradientDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent1 Declaration public string BackgroudGradientPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent2 Declaration public string BackgroudGradientPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBanText Declaration public string BlueSideBanText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBorderColorBan Declaration public string BlueSideBorderColorBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideBorderColorPick Declaration public string BlueSideBorderColorPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSubText Declaration public string BlueSideColorSubText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorText Declaration public string BlueSideColorText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextBan Declaration public string BlueSideColorTextBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextPick Declaration public string BlueSideColorTextPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSidePickText Declaration public string BlueSidePickText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamName Declaration public string BlueSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideTeamNameSubtext Declaration public string BlueSideTeamNameSubtext { get; set; } Property Value Type Description System.String | Improve this Doc View Source BorderBottomPixel Declaration public string BorderBottomPixel { get; set; } Property Value Type Description System.String | Improve this Doc View Source BorderTop Declaration public string BorderTop { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBanText Declaration public string RedSideBanText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBorderColorBan Declaration public string RedSideBorderColorBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideBorderColorPick Declaration public string RedSideBorderColorPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSubText Declaration public string RedSideColorSubText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorText Declaration public string RedSideColorText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextBan Declaration public string RedSideColorTextBan { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextPick Declaration public string RedSideColorTextPick { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSidePickText Declaration public string RedSidePickText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamName Declaration public string RedSideTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideTeamNameSubtext Declaration public string RedSideTeamNameSubtext { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.ChampSelectView4Page.html": { - "href": "apiserver/OSL_Server.Pages.ChampSelectView4Page.html", + "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html", "title": "Class ChampSelectView4Page | OSL", - "keywords": "Class ChampSelectView4Page Champ Select View4 Page Inheritance System.Object ChampSelectView4Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ChampSelectView4Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView4Page.FormatingData formatingData Field Value Type Description ChampSelectView4Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + "keywords": "Class ChampSelectView4Page Champ Select View4 Page Inheritance System.Object ChampSelectView4Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.ChampSelect Assembly : OSL-Server.dll Syntax public class ChampSelectView4Page Fields | Improve this Doc View Source formatingData Declaration public static ChampSelectView4Page.FormatingData formatingData Field Value Type Description ChampSelectView4Page.FormatingData | Improve this Doc View Source overlayLoaded Declaration public static bool overlayLoaded Field Value Type Description System.Boolean Methods | Improve this Doc View Source EnableOrDisableOverlayView() Enable or disable overlay view Declaration public static void EnableOrDisableOverlayView() | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.ChampSelect.html": { + "href": "apiserver/OSL_Server.Pages.ChampSelect.html", + "title": "Namespace OSL_Server.Pages.ChampSelect | OSL", + "keywords": "Namespace OSL_Server.Pages.ChampSelect Classes ChampSelectPage Champ Select Page ChampSelectPage.TextValueOverlayView1 Text and value for display color, information on champ select view 1 ChampSelectPage.TextValueOverlayView2 Text and value for display color, information on champ select view 2 ChampSelectPage.TextValueOverlayView3 Text and value for display color, information on champ select view 3 ChampSelectPage.TextValueOverlayView4 Text and value for display color, information on champ select view 4 ChampSelectView1Page Champ Select View1 Page ChampSelectView1Page.FormatingData Formating Data ChampSelectView2Page Champ Select View2 Page ChampSelectView2Page.FormatingData ChampSelectView3Page Champ Select View3 Page ChampSelectView3Page.FormatingData Formating Data ChampSelectView4Page Champ Select View4 Page ChampSelectView4Page.FormatingData Formating Data" }, "apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html": { "href": "apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html", "title": "Class ConfigPage.ConfigOverlayText | OSL", - "keywords": "Class ConfigPage.ConfigOverlayText Inheritance System.Object ConfigPage.ConfigOverlayText Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ConfigOverlayText Properties | Improve this Doc View Source Port Declaration [Required] [Range(0, 65535, ErrorMessage = \"Accommodation invalid (1-65535).\")] public int Port { get; set; } Property Value Type Description System.Int32" + "keywords": "Class ConfigPage.ConfigOverlayText Inheritance System.Object ConfigPage.ConfigOverlayText Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ConfigOverlayText Properties | Improve this Doc View Source Port Declaration [Required] [Range(0, 65535, ErrorMessage = \"Accommodation invalid (1-65535).\")] public int Port { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source WebRiotApiKey Declaration [Required] [StringLength(42, MinimumLength = 42, ErrorMessage = \"API key is incorect (42 character).\")] public string WebRiotApiKey { get; set; } Property Value Type Description System.String" }, "apiserver/OSL_Server.Pages.ConfigPage.html": { "href": "apiserver/OSL_Server.Pages.ConfigPage.html", "title": "Class ConfigPage | OSL", - "keywords": "Class ConfigPage Config Page Inheritance System.Object ConfigPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ConfigPage Methods | Improve this Doc View Source GenerateConfigFileChampSelectView1() Declaration public string GenerateConfigFileChampSelectView1() Returns Type Description System.String" + "keywords": "Class ConfigPage Config Page Inheritance System.Object ConfigPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class ConfigPage Methods | Improve this Doc View Source GenerateConfigFileChampSelectView1() Declaration public string GenerateConfigFileChampSelectView1() Returns Type Description System.String | Improve this Doc View Source WebRiotApiKeySubmit() Declaration public static void WebRiotApiKeySubmit()" }, - "apiserver/OSL_Server.Pages.EndGamePage.html": { - "href": "apiserver/OSL_Server.Pages.EndGamePage.html", + "apiserver/OSL_Server.Pages.EndGame.EndGamePage.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGamePage.html", "title": "Class EndGamePage | OSL", - "keywords": "Class EndGamePage Inheritance System.Object EndGamePage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class EndGamePage" + "keywords": "Class EndGamePage Inheritance System.Object EndGamePage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class EndGamePage Fields | Improve this Doc View Source colorPickerOverlay1 Declaration public static string colorPickerOverlay1 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay1Bans Declaration public static string colorPickerOverlay1Bans Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay1ChampInfo Declaration public static string colorPickerOverlay1ChampInfo Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay1GlobalStats Declaration public static string colorPickerOverlay1GlobalStats Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay1GoldDiff Declaration public static string colorPickerOverlay1GoldDiff Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay1TimerBar Declaration public static string colorPickerOverlay1TimerBar Field Value Type Description System.String | Improve this Doc View Source colorValue Declaration public static string colorValue Field Value Type Description System.String Methods | Improve this Doc View Source DisableAllBackgroundView3() Declaration public static void DisableAllBackgroundView3() | Improve this Doc View Source DisableAllGradiantView1() Declaration public static void DisableAllGradiantView1() | Improve this Doc View Source DisableAllGradiantView2() Declaration public static void DisableAllGradiantView2() | Improve this Doc View Source DisableAllGradiantView3() Declaration public static void DisableAllGradiantView3() | Improve this Doc View Source EnableAllBackgroundView3() Declaration public static void EnableAllBackgroundView3() | Improve this Doc View Source EnableAllGradiantView1() Declaration public static void EnableAllGradiantView1() | Improve this Doc View Source EnableAllGradiantView2() Declaration public static void EnableAllGradiantView2() | Improve this Doc View Source EnableAllGradiantView3() Declaration public static void EnableAllGradiantView3()" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html", + "title": "Class EndGamePage.TextValueOverlayView1 | OSL", + "keywords": "Class EndGamePage.TextValueOverlayView1 Inheritance System.Object EndGamePage.TextValueOverlayView1 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class TextValueOverlayView1 Fields | Improve this Doc View Source BansBorderColorNotSet Declaration public static string BansBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source ChampionInfoBorderColorNotSet Declaration public static string ChampionInfoBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source GlobalStatsBorderColorNotSet Declaration public static string GlobalStatsBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source GoldDiffBarColorNotSet Declaration public static string GoldDiffBarColorNotSet Field Value Type Description System.String | Improve this Doc View Source GoldDiffBorderColorNotSet Declaration public static string GoldDiffBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source TopBarBorderColorNotSet Declaration public static string TopBarBorderColorNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BackgroundColor Declaration public bool BackgroundColor { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source BackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BansBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BansBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BansBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BansBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansGradiant Declaration public bool BansGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int ChampionInfoBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int ChampionInfoBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int ChampionInfoBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int ChampionInfoBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoGradiant Declaration public bool ChampionInfoGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string ChampionInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int GlobalStatsBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GlobalStatsBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GlobalStatsBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GlobalStatsBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsGradiant Declaration public bool GlobalStatsGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GoldDiffBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int GoldDiffBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GoldDiffBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GoldDiffBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBarColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GoldDiffBarColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GoldDiffBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffGradiant Declaration public bool GoldDiffGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GoldDiffText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string GoldDiffText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int TopBarBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int TopBarBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int TopBarBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBlueTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarBlueTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScore Declaration [StringLength(5, ErrorMessage = \"Name is too long (5 character limit).\")] public string TopBarBlueTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int TopBarBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarGradiant Declaration public bool TopBarGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source TopBarRedTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarRedTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScore Declaration [StringLength(5, ErrorMessage = \"Name is too long (5 character limit).\")] public string TopBarRedTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarTimerText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BackgroundColorEnableDisableSubmit() Declaration public static void BackgroundColorEnableDisableSubmit() | Improve this Doc View Source BackgroundColorSubmit() Declaration public static void BackgroundColorSubmit() | Improve this Doc View Source BansBackgroundColorSubmit() Declaration public static void BansBackgroundColorSubmit() | Improve this Doc View Source BansBorderColorSubmit() Declaration public static void BansBorderColorSubmit() | Improve this Doc View Source BansGradiantSubmit() Declaration public static void BansGradiantSubmit() | Improve this Doc View Source ChampionInfoBackgroundColorSubmit() Declaration public static void ChampionInfoBackgroundColorSubmit() | Improve this Doc View Source ChampionInfoBorderColorSubmit() Declaration public static void ChampionInfoBorderColorSubmit() | Improve this Doc View Source ChampionInfoGradiantSubmit() Declaration public static void ChampionInfoGradiantSubmit() | Improve this Doc View Source GlobalStatsBackgroundColorSubmit() Declaration public static void GlobalStatsBackgroundColorSubmit() | Improve this Doc View Source GlobalStatsBorderColorSubmit() Declaration public static void GlobalStatsBorderColorSubmit() | Improve this Doc View Source GlobalStatsGradiantSubmit() Declaration public static void GlobalStatsGradiantSubmit() | Improve this Doc View Source GoldDiffBackgroundColorSubmit() Declaration public static void GoldDiffBackgroundColorSubmit() | Improve this Doc View Source GoldDiffBarColorSubmit() Declaration public static void GoldDiffBarColorSubmit() | Improve this Doc View Source GoldDiffBorderColorSubmit() Declaration public static void GoldDiffBorderColorSubmit() | Improve this Doc View Source GoldDiffGradiantSubmit() Declaration public static void GoldDiffGradiantSubmit() | Improve this Doc View Source SetBackgroundColorColor1() Declaration public static void SetBackgroundColorColor1() | Improve this Doc View Source SetBackgroundColorColor2() Declaration public static void SetBackgroundColorColor2() | Improve this Doc View Source SetBansBackgroundColorColor1() Declaration public static void SetBansBackgroundColorColor1() | Improve this Doc View Source SetBansBackgroundColorColor2() Declaration public static void SetBansBackgroundColorColor2() | Improve this Doc View Source SetBansBorderColor() Declaration public static void SetBansBorderColor() | Improve this Doc View Source SetBansTextColor() Declaration public static void SetBansTextColor() | Improve this Doc View Source SetChampionInfoBackgroundColorColor1() Declaration public static void SetChampionInfoBackgroundColorColor1() | Improve this Doc View Source SetChampionInfoBackgroundColorColor2() Declaration public static void SetChampionInfoBackgroundColorColor2() | Improve this Doc View Source SetChampionInfoBlueBarColor() Declaration public static void SetChampionInfoBlueBarColor() | Improve this Doc View Source SetChampionInfoBlueDegaTextColor() Declaration public static void SetChampionInfoBlueDegaTextColor() | Improve this Doc View Source SetChampionInfoBorderColor() Declaration public static void SetChampionInfoBorderColor() | Improve this Doc View Source SetChampionInfoRedBarColor() Declaration public static void SetChampionInfoRedBarColor() | Improve this Doc View Source SetChampionInfoRedDegaTextColor() Declaration public static void SetChampionInfoRedDegaTextColor() | Improve this Doc View Source SetChampionInfoTextColor() Declaration public static void SetChampionInfoTextColor() | Improve this Doc View Source SetGlobalStatsBackgroundColorColor1() Declaration public static void SetGlobalStatsBackgroundColorColor1() | Improve this Doc View Source SetGlobalStatsBackgroundColorColor2() Declaration public static void SetGlobalStatsBackgroundColorColor2() | Improve this Doc View Source SetGlobalStatsBlueTextColor() Declaration public static void SetGlobalStatsBlueTextColor() | Improve this Doc View Source SetGlobalStatsBorderColor() Declaration public static void SetGlobalStatsBorderColor() | Improve this Doc View Source SetGlobalStatsRedTextColor() Declaration public static void SetGlobalStatsRedTextColor() | Improve this Doc View Source SetGlobalStatsTextColor() Declaration public static void SetGlobalStatsTextColor() | Improve this Doc View Source SetGoldDiffBackgroundColorColor1() Declaration public static void SetGoldDiffBackgroundColorColor1() | Improve this Doc View Source SetGoldDiffBackgroundColorColor2() Declaration public static void SetGoldDiffBackgroundColorColor2() | Improve this Doc View Source SetGoldDiffBarColor() Declaration public static void SetGoldDiffBarColor() | Improve this Doc View Source SetGoldDiffBluePointGoldColor() Declaration public static void SetGoldDiffBluePointGoldColor() | Improve this Doc View Source SetGoldDiffBlueTextGoldColor() Declaration public static void SetGoldDiffBlueTextGoldColor() | Improve this Doc View Source SetGoldDiffBorderColor() Declaration public static void SetGoldDiffBorderColor() | Improve this Doc View Source SetGoldDiffLinkPointGoldColor() Declaration public static void SetGoldDiffLinkPointGoldColor() | Improve this Doc View Source SetGoldDiffRedPointGoldColor() Declaration public static void SetGoldDiffRedPointGoldColor() | Improve this Doc View Source SetGoldDiffRedTextGoldColor() Declaration public static void SetGoldDiffRedTextGoldColor() | Improve this Doc View Source SetGoldDiffStartEndPointGoldColor() Declaration public static void SetGoldDiffStartEndPointGoldColor() | Improve this Doc View Source SetGoldDiffTextColor() Declaration public static void SetGoldDiffTextColor() | Improve this Doc View Source SetGoldDiffZeroPointGoldColor() Declaration public static void SetGoldDiffZeroPointGoldColor() | Improve this Doc View Source SetGoldDiffZeroTextGoldColor() Declaration public static void SetGoldDiffZeroTextGoldColor() | Improve this Doc View Source SetTopBarBackgroundColorColor1() Declaration public static void SetTopBarBackgroundColorColor1() | Improve this Doc View Source SetTopBarBackgroundColorColor2() Declaration public static void SetTopBarBackgroundColorColor2() | Improve this Doc View Source SetTopBarBlueTeamNameColor() Declaration public static void SetTopBarBlueTeamNameColor() | Improve this Doc View Source SetTopBarBlueTeamScoreColor() Declaration public static void SetTopBarBlueTeamScoreColor() | Improve this Doc View Source SetTopBarBlueTeamWinLossColor() Declaration public static void SetTopBarBlueTeamWinLossColor() | Improve this Doc View Source SetTopBarBorderColor() Declaration public static void SetTopBarBorderColor() | Improve this Doc View Source SetTopBarRedTeamNameColor() Declaration public static void SetTopBarRedTeamNameColor() | Improve this Doc View Source SetTopBarRedTeamScoreColor() Declaration public static void SetTopBarRedTeamScoreColor() | Improve this Doc View Source SetTopBarRedTeamWinLossColor() Declaration public static void SetTopBarRedTeamWinLossColor() | Improve this Doc View Source SetTopBarTimerColor() Declaration public static void SetTopBarTimerColor() | Improve this Doc View Source SetTopBarTimerTextColor() Declaration public static void SetTopBarTimerTextColor() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBansBorderColor() Declaration public static string TempsBansBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsChampionInfoBorderColor() Declaration public static string TempsChampionInfoBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsGlobalStatsBorderColor() Declaration public static string TempsGlobalStatsBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsGoldDiffBarColor() Declaration public static string TempsGoldDiffBarColor() Returns Type Description System.String | Improve this Doc View Source TempsGoldDiffBorderColor() Declaration public static string TempsGoldDiffBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsTopBarBorderColor() Declaration public static string TempsTopBarBorderColor() Returns Type Description System.String | Improve this Doc View Source TopBarBackgroundColorSubmit() Declaration public static void TopBarBackgroundColorSubmit() | Improve this Doc View Source TopBarBlueTeamNameSubmit() Declaration public static void TopBarBlueTeamNameSubmit() | Improve this Doc View Source TopBarBlueTeamScoreSubmit() Declaration public static void TopBarBlueTeamScoreSubmit() | Improve this Doc View Source TopBarBorderColorSubmit() Declaration public static void TopBarBorderColorSubmit() | Improve this Doc View Source TopBarGradiantSubmit() Declaration public static void TopBarGradiantSubmit() | Improve this Doc View Source TopBarRedTeamNameSubmit() Declaration public static void TopBarRedTeamNameSubmit() | Improve this Doc View Source TopBarRedTeamScoreSubmit() Declaration public static void TopBarRedTeamScoreSubmit()" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html", + "title": "Class EndGamePage.TextValueOverlayView2 | OSL", + "keywords": "Class EndGamePage.TextValueOverlayView2 Inheritance System.Object EndGamePage.TextValueOverlayView2 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class TextValueOverlayView2 Fields | Improve this Doc View Source BansBorderColorNotSet Declaration public static string BansBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source ChampionInfoBorderColorNotSet Declaration public static string ChampionInfoBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source GlobalStatsBorderColorNotSet Declaration public static string GlobalStatsBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source GoldDiffBarColorNotSet Declaration public static string GoldDiffBarColorNotSet Field Value Type Description System.String | Improve this Doc View Source GoldDiffBorderColorNotSet Declaration public static string GoldDiffBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source TopBarBorderColorNotSet Declaration public static string TopBarBorderColorNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BackgroundColor Declaration public bool BackgroundColor { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source BackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BansBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BansBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BansBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BansBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansGradiant Declaration public bool BansGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int ChampionInfoBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int ChampionInfoBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int ChampionInfoBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int ChampionInfoBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoGradiant Declaration public bool ChampionInfoGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string ChampionInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int GlobalStatsBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GlobalStatsBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GlobalStatsBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GlobalStatsBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsGradiant Declaration public bool GlobalStatsGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GoldDiffBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int GoldDiffBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GoldDiffBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GoldDiffBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBarColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GoldDiffBarColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GoldDiffBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffGradiant Declaration public bool GoldDiffGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GoldDiffText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string GoldDiffText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int TopBarBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int TopBarBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int TopBarBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBlueTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarBlueTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScore Declaration [StringLength(5, ErrorMessage = \"Name is too long (5 character limit).\")] public string TopBarBlueTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int TopBarBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarGradiant Declaration public bool TopBarGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source TopBarRedTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarRedTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScore Declaration [StringLength(5, ErrorMessage = \"Name is too long (5 character limit).\")] public string TopBarRedTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarTimerText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BackgroundColorEnableDisableSubmit() Declaration public static void BackgroundColorEnableDisableSubmit() | Improve this Doc View Source BackgroundColorSubmit() Declaration public static void BackgroundColorSubmit() | Improve this Doc View Source BansBackgroundColorSubmit() Declaration public static void BansBackgroundColorSubmit() | Improve this Doc View Source BansBorderColorSubmit() Declaration public static void BansBorderColorSubmit() | Improve this Doc View Source BansGradiantSubmit() Declaration public static void BansGradiantSubmit() | Improve this Doc View Source ChampionInfoBackgroundColorSubmit() Declaration public static void ChampionInfoBackgroundColorSubmit() | Improve this Doc View Source ChampionInfoBorderColorSubmit() Declaration public static void ChampionInfoBorderColorSubmit() | Improve this Doc View Source ChampionInfoGradiantSubmit() Declaration public static void ChampionInfoGradiantSubmit() | Improve this Doc View Source GlobalStatsBackgroundColorSubmit() Declaration public static void GlobalStatsBackgroundColorSubmit() | Improve this Doc View Source GlobalStatsBorderColorSubmit() Declaration public static void GlobalStatsBorderColorSubmit() | Improve this Doc View Source GlobalStatsGradiantSubmit() Declaration public static void GlobalStatsGradiantSubmit() | Improve this Doc View Source GoldDiffBackgroundColorSubmit() Declaration public static void GoldDiffBackgroundColorSubmit() | Improve this Doc View Source GoldDiffBarColorSubmit() Declaration public static void GoldDiffBarColorSubmit() | Improve this Doc View Source GoldDiffBorderColorSubmit() Declaration public static void GoldDiffBorderColorSubmit() | Improve this Doc View Source GoldDiffGradiantSubmit() Declaration public static void GoldDiffGradiantSubmit() | Improve this Doc View Source SetBackgroundColorColor1() Declaration public static void SetBackgroundColorColor1() | Improve this Doc View Source SetBackgroundColorColor2() Declaration public static void SetBackgroundColorColor2() | Improve this Doc View Source SetBansBackgroundColorColor1() Declaration public static void SetBansBackgroundColorColor1() | Improve this Doc View Source SetBansBackgroundColorColor2() Declaration public static void SetBansBackgroundColorColor2() | Improve this Doc View Source SetBansBorderColor() Declaration public static void SetBansBorderColor() | Improve this Doc View Source SetBansTextColor() Declaration public static void SetBansTextColor() | Improve this Doc View Source SetChampionInfoBackgroundColorColor1() Declaration public static void SetChampionInfoBackgroundColorColor1() | Improve this Doc View Source SetChampionInfoBackgroundColorColor2() Declaration public static void SetChampionInfoBackgroundColorColor2() | Improve this Doc View Source SetChampionInfoBlueBarColor() Declaration public static void SetChampionInfoBlueBarColor() | Improve this Doc View Source SetChampionInfoBlueDegaTextColor() Declaration public static void SetChampionInfoBlueDegaTextColor() | Improve this Doc View Source SetChampionInfoBorderColor() Declaration public static void SetChampionInfoBorderColor() | Improve this Doc View Source SetChampionInfoRedBarColor() Declaration public static void SetChampionInfoRedBarColor() | Improve this Doc View Source SetChampionInfoRedDegaTextColor() Declaration public static void SetChampionInfoRedDegaTextColor() | Improve this Doc View Source SetChampionInfoTextColor() Declaration public static void SetChampionInfoTextColor() | Improve this Doc View Source SetGlobalStatsBackgroundColorColor1() Declaration public static void SetGlobalStatsBackgroundColorColor1() | Improve this Doc View Source SetGlobalStatsBackgroundColorColor2() Declaration public static void SetGlobalStatsBackgroundColorColor2() | Improve this Doc View Source SetGlobalStatsBlueTextColor() Declaration public static void SetGlobalStatsBlueTextColor() | Improve this Doc View Source SetGlobalStatsBorderColor() Declaration public static void SetGlobalStatsBorderColor() | Improve this Doc View Source SetGlobalStatsRedTextColor() Declaration public static void SetGlobalStatsRedTextColor() | Improve this Doc View Source SetGlobalStatsTextColor() Declaration public static void SetGlobalStatsTextColor() | Improve this Doc View Source SetGoldDiffBackgroundColorColor1() Declaration public static void SetGoldDiffBackgroundColorColor1() | Improve this Doc View Source SetGoldDiffBackgroundColorColor2() Declaration public static void SetGoldDiffBackgroundColorColor2() | Improve this Doc View Source SetGoldDiffBarColor() Declaration public static void SetGoldDiffBarColor() | Improve this Doc View Source SetGoldDiffBluePointGoldColor() Declaration public static void SetGoldDiffBluePointGoldColor() | Improve this Doc View Source SetGoldDiffBlueTextGoldColor() Declaration public static void SetGoldDiffBlueTextGoldColor() | Improve this Doc View Source SetGoldDiffBorderColor() Declaration public static void SetGoldDiffBorderColor() | Improve this Doc View Source SetGoldDiffLinkPointGoldColor() Declaration public static void SetGoldDiffLinkPointGoldColor() | Improve this Doc View Source SetGoldDiffRedPointGoldColor() Declaration public static void SetGoldDiffRedPointGoldColor() | Improve this Doc View Source SetGoldDiffRedTextGoldColor() Declaration public static void SetGoldDiffRedTextGoldColor() | Improve this Doc View Source SetGoldDiffStartEndPointGoldColor() Declaration public static void SetGoldDiffStartEndPointGoldColor() | Improve this Doc View Source SetGoldDiffTextColor() Declaration public static void SetGoldDiffTextColor() | Improve this Doc View Source SetGoldDiffZeroPointGoldColor() Declaration public static void SetGoldDiffZeroPointGoldColor() | Improve this Doc View Source SetGoldDiffZeroTextGoldColor() Declaration public static void SetGoldDiffZeroTextGoldColor() | Improve this Doc View Source SetTopBarBackgroundColorColor1() Declaration public static void SetTopBarBackgroundColorColor1() | Improve this Doc View Source SetTopBarBackgroundColorColor2() Declaration public static void SetTopBarBackgroundColorColor2() | Improve this Doc View Source SetTopBarBlueTeamNameColor() Declaration public static void SetTopBarBlueTeamNameColor() | Improve this Doc View Source SetTopBarBlueTeamScoreColor() Declaration public static void SetTopBarBlueTeamScoreColor() | Improve this Doc View Source SetTopBarBlueTeamWinLossColor() Declaration public static void SetTopBarBlueTeamWinLossColor() | Improve this Doc View Source SetTopBarBorderColor() Declaration public static void SetTopBarBorderColor() | Improve this Doc View Source SetTopBarRedTeamNameColor() Declaration public static void SetTopBarRedTeamNameColor() | Improve this Doc View Source SetTopBarRedTeamScoreColor() Declaration public static void SetTopBarRedTeamScoreColor() | Improve this Doc View Source SetTopBarRedTeamWinLossColor() Declaration public static void SetTopBarRedTeamWinLossColor() | Improve this Doc View Source SetTopBarTimerColor() Declaration public static void SetTopBarTimerColor() | Improve this Doc View Source SetTopBarTimerTextColor() Declaration public static void SetTopBarTimerTextColor() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBansBorderColor() Declaration public static string TempsBansBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsChampionInfoBorderColor() Declaration public static string TempsChampionInfoBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsGlobalStatsBorderColor() Declaration public static string TempsGlobalStatsBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsGoldDiffBarColor() Declaration public static string TempsGoldDiffBarColor() Returns Type Description System.String | Improve this Doc View Source TempsGoldDiffBorderColor() Declaration public static string TempsGoldDiffBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsTopBarBorderColor() Declaration public static string TempsTopBarBorderColor() Returns Type Description System.String | Improve this Doc View Source TopBarBackgroundColorSubmit() Declaration public static void TopBarBackgroundColorSubmit() | Improve this Doc View Source TopBarBlueTeamNameSubmit() Declaration public static void TopBarBlueTeamNameSubmit() | Improve this Doc View Source TopBarBlueTeamScoreSubmit() Declaration public static void TopBarBlueTeamScoreSubmit() | Improve this Doc View Source TopBarBorderColorSubmit() Declaration public static void TopBarBorderColorSubmit() | Improve this Doc View Source TopBarGradiantSubmit() Declaration public static void TopBarGradiantSubmit() | Improve this Doc View Source TopBarRedTeamNameSubmit() Declaration public static void TopBarRedTeamNameSubmit() | Improve this Doc View Source TopBarRedTeamScoreSubmit() Declaration public static void TopBarRedTeamScoreSubmit()" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html", + "title": "Class EndGamePage.TextValueOverlayView3 | OSL", + "keywords": "Class EndGamePage.TextValueOverlayView3 Inheritance System.Object EndGamePage.TextValueOverlayView3 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class TextValueOverlayView3 Fields | Improve this Doc View Source BansBorderColorNotSet Declaration public static string BansBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source ChampionInfoBorderColorNotSet Declaration public static string ChampionInfoBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source GlobalStatsBorderColorNotSet Declaration public static string GlobalStatsBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source GlobalStatsSeparationColorNotSet Declaration public static string GlobalStatsSeparationColorNotSet Field Value Type Description System.String | Improve this Doc View Source GoldDiffBarColorNotSet Declaration public static string GoldDiffBarColorNotSet Field Value Type Description System.String | Improve this Doc View Source GoldDiffBorderColorNotSet Declaration public static string GoldDiffBorderColorNotSet Field Value Type Description System.String | Improve this Doc View Source TopBarBorderColorNotSet Declaration public static string TopBarBorderColorNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BackgroundColor Declaration public bool BackgroundColor { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source BackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackground Declaration public bool BansBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source BansBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BansBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BansBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BansBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BansBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BansGradiant Declaration public bool BansGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoBackground Declaration public bool ChampionInfoBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int ChampionInfoBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int ChampionInfoBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int ChampionInfoBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int ChampionInfoBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ChampionInfoGradiant Declaration public bool ChampionInfoGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ChampionInfoText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string ChampionInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackground Declaration public bool GlobalStatsBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GlobalStatsBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int GlobalStatsBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GlobalStatsBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GlobalStatsBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GlobalStatsBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GlobalStatsGradiant Declaration public bool GlobalStatsGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GlobalStatsSeparationColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GlobalStatsSeparationColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackground Declaration public bool GoldDiffBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GoldDiffBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int GoldDiffBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GoldDiffBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int GoldDiffBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBarColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GoldDiffBarColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int GoldDiffBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source GoldDiffGradiant Declaration public bool GoldDiffGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GoldDiffText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string GoldDiffText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackground Declaration public bool TopBarBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source TopBarBackgroundColorDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int TopBarBackgroundColorDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBackgroundColorPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int TopBarBackgroundColorPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBackgroundColorPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int TopBarBackgroundColorPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarBlueTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarBlueTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScore Declaration [StringLength(5, ErrorMessage = \"Name is too long (5 character limit).\")] public string TopBarBlueTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBorderColor Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int TopBarBorderColor { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TopBarGradiant Declaration public bool TopBarGradiant { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source TopBarRedTeamName Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarRedTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScore Declaration [StringLength(5, ErrorMessage = \"Name is too long (5 character limit).\")] public string TopBarRedTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerText Declaration [StringLength(20, ErrorMessage = \"Name is too long (20 character limit).\")] public string TopBarTimerText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BackgroundColorEnableDisableSubmit() Declaration public static void BackgroundColorEnableDisableSubmit() | Improve this Doc View Source BackgroundColorSubmit() Declaration public static void BackgroundColorSubmit() | Improve this Doc View Source BansBackgroundColorSubmit() Declaration public static void BansBackgroundColorSubmit() | Improve this Doc View Source BansBackgroundSubmit() Declaration public static void BansBackgroundSubmit() | Improve this Doc View Source BansBorderColorSubmit() Declaration public static void BansBorderColorSubmit() | Improve this Doc View Source BansGradiantSubmit() Declaration public static void BansGradiantSubmit() | Improve this Doc View Source ChampionInfoBackgroundColorSubmit() Declaration public static void ChampionInfoBackgroundColorSubmit() | Improve this Doc View Source ChampionInfoBackgroundSubmit() Declaration public static void ChampionInfoBackgroundSubmit() | Improve this Doc View Source ChampionInfoBorderColorSubmit() Declaration public static void ChampionInfoBorderColorSubmit() | Improve this Doc View Source ChampionInfoGradiantSubmit() Declaration public static void ChampionInfoGradiantSubmit() | Improve this Doc View Source GlobalStatsBackgroundColorSubmit() Declaration public static void GlobalStatsBackgroundColorSubmit() | Improve this Doc View Source GlobalStatsBackgroundSubmit() Declaration public static void GlobalStatsBackgroundSubmit() | Improve this Doc View Source GlobalStatsBorderColorSubmit() Declaration public static void GlobalStatsBorderColorSubmit() | Improve this Doc View Source GlobalStatsGradiantSubmit() Declaration public static void GlobalStatsGradiantSubmit() | Improve this Doc View Source GlobalStatsSeparationColorSubmit() Declaration public static void GlobalStatsSeparationColorSubmit() | Improve this Doc View Source GoldDiffBackgroundColorSubmit() Declaration public static void GoldDiffBackgroundColorSubmit() | Improve this Doc View Source GoldDiffBackgroundSubmit() Declaration public static void GoldDiffBackgroundSubmit() | Improve this Doc View Source GoldDiffBarColorSubmit() Declaration public static void GoldDiffBarColorSubmit() | Improve this Doc View Source GoldDiffBorderColorSubmit() Declaration public static void GoldDiffBorderColorSubmit() | Improve this Doc View Source GoldDiffGradiantSubmit() Declaration public static void GoldDiffGradiantSubmit() | Improve this Doc View Source SetBackgroundColorColor1() Declaration public static void SetBackgroundColorColor1() | Improve this Doc View Source SetBackgroundColorColor2() Declaration public static void SetBackgroundColorColor2() | Improve this Doc View Source SetBansBackgroundColorColor1() Declaration public static void SetBansBackgroundColorColor1() | Improve this Doc View Source SetBansBackgroundColorColor2() Declaration public static void SetBansBackgroundColorColor2() | Improve this Doc View Source SetBansBorderColor() Declaration public static void SetBansBorderColor() | Improve this Doc View Source SetBansTextColor() Declaration public static void SetBansTextColor() | Improve this Doc View Source SetChampionInfoBackgroundColorColor1() Declaration public static void SetChampionInfoBackgroundColorColor1() | Improve this Doc View Source SetChampionInfoBackgroundColorColor2() Declaration public static void SetChampionInfoBackgroundColorColor2() | Improve this Doc View Source SetChampionInfoBlueBarColor() Declaration public static void SetChampionInfoBlueBarColor() | Improve this Doc View Source SetChampionInfoBlueDegaTextColor() Declaration public static void SetChampionInfoBlueDegaTextColor() | Improve this Doc View Source SetChampionInfoBorderColor() Declaration public static void SetChampionInfoBorderColor() | Improve this Doc View Source SetChampionInfoRedBarColor() Declaration public static void SetChampionInfoRedBarColor() | Improve this Doc View Source SetChampionInfoRedDegaTextColor() Declaration public static void SetChampionInfoRedDegaTextColor() | Improve this Doc View Source SetChampionInfoTextColor() Declaration public static void SetChampionInfoTextColor() | Improve this Doc View Source SetGlobalStatsBackgroundColorColor1() Declaration public static void SetGlobalStatsBackgroundColorColor1() | Improve this Doc View Source SetGlobalStatsBackgroundColorColor2() Declaration public static void SetGlobalStatsBackgroundColorColor2() | Improve this Doc View Source SetGlobalStatsBlueTextColor() Declaration public static void SetGlobalStatsBlueTextColor() | Improve this Doc View Source SetGlobalStatsBorderColor() Declaration public static void SetGlobalStatsBorderColor() | Improve this Doc View Source SetGlobalStatsRedTextColor() Declaration public static void SetGlobalStatsRedTextColor() | Improve this Doc View Source SetGlobalStatsSeparationColor() Declaration public static void SetGlobalStatsSeparationColor() | Improve this Doc View Source SetGlobalStatsTextColor() Declaration public static void SetGlobalStatsTextColor() | Improve this Doc View Source SetGoldDiffBackgroundColorColor1() Declaration public static void SetGoldDiffBackgroundColorColor1() | Improve this Doc View Source SetGoldDiffBackgroundColorColor2() Declaration public static void SetGoldDiffBackgroundColorColor2() | Improve this Doc View Source SetGoldDiffBarColor() Declaration public static void SetGoldDiffBarColor() | Improve this Doc View Source SetGoldDiffBluePointGoldColor() Declaration public static void SetGoldDiffBluePointGoldColor() | Improve this Doc View Source SetGoldDiffBlueTextGoldColor() Declaration public static void SetGoldDiffBlueTextGoldColor() | Improve this Doc View Source SetGoldDiffBorderColor() Declaration public static void SetGoldDiffBorderColor() | Improve this Doc View Source SetGoldDiffLinkPointGoldColor() Declaration public static void SetGoldDiffLinkPointGoldColor() | Improve this Doc View Source SetGoldDiffRedPointGoldColor() Declaration public static void SetGoldDiffRedPointGoldColor() | Improve this Doc View Source SetGoldDiffRedTextGoldColor() Declaration public static void SetGoldDiffRedTextGoldColor() | Improve this Doc View Source SetGoldDiffStartEndPointGoldColor() Declaration public static void SetGoldDiffStartEndPointGoldColor() | Improve this Doc View Source SetGoldDiffTextColor() Declaration public static void SetGoldDiffTextColor() | Improve this Doc View Source SetGoldDiffZeroPointGoldColor() Declaration public static void SetGoldDiffZeroPointGoldColor() | Improve this Doc View Source SetGoldDiffZeroTextGoldColor() Declaration public static void SetGoldDiffZeroTextGoldColor() | Improve this Doc View Source SetTopBarBackgroundColorColor1() Declaration public static void SetTopBarBackgroundColorColor1() | Improve this Doc View Source SetTopBarBackgroundColorColor2() Declaration public static void SetTopBarBackgroundColorColor2() | Improve this Doc View Source SetTopBarBlueTeamNameColor() Declaration public static void SetTopBarBlueTeamNameColor() | Improve this Doc View Source SetTopBarBlueTeamScoreColor() Declaration public static void SetTopBarBlueTeamScoreColor() | Improve this Doc View Source SetTopBarBlueTeamWinLossColor() Declaration public static void SetTopBarBlueTeamWinLossColor() | Improve this Doc View Source SetTopBarBorderColor() Declaration public static void SetTopBarBorderColor() | Improve this Doc View Source SetTopBarRedTeamNameColor() Declaration public static void SetTopBarRedTeamNameColor() | Improve this Doc View Source SetTopBarRedTeamScoreColor() Declaration public static void SetTopBarRedTeamScoreColor() | Improve this Doc View Source SetTopBarRedTeamWinLossColor() Declaration public static void SetTopBarRedTeamWinLossColor() | Improve this Doc View Source SetTopBarTimerColor() Declaration public static void SetTopBarTimerColor() | Improve this Doc View Source SetTopBarTimerTextColor() Declaration public static void SetTopBarTimerTextColor() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue() | Improve this Doc View Source TempsBansBorderColor() Declaration public static string TempsBansBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsChampionInfoBorderColor() Declaration public static string TempsChampionInfoBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsGlobalStatsBorderColor() Declaration public static string TempsGlobalStatsBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsGlobalStatsSeparationColor() Declaration public static string TempsGlobalStatsSeparationColor() Returns Type Description System.String | Improve this Doc View Source TempsGoldDiffBarColor() Declaration public static string TempsGoldDiffBarColor() Returns Type Description System.String | Improve this Doc View Source TempsGoldDiffBorderColor() Declaration public static string TempsGoldDiffBorderColor() Returns Type Description System.String | Improve this Doc View Source TempsTopBarBorderColor() Declaration public static string TempsTopBarBorderColor() Returns Type Description System.String | Improve this Doc View Source TopBarBackgroundColorSubmit() Declaration public static void TopBarBackgroundColorSubmit() | Improve this Doc View Source TopBarBackgroundSubmit() Declaration public static void TopBarBackgroundSubmit() | Improve this Doc View Source TopBarBlueTeamNameSubmit() Declaration public static void TopBarBlueTeamNameSubmit() | Improve this Doc View Source TopBarBlueTeamScoreSubmit() Declaration public static void TopBarBlueTeamScoreSubmit() | Improve this Doc View Source TopBarBorderColorSubmit() Declaration public static void TopBarBorderColorSubmit() | Improve this Doc View Source TopBarGradiantSubmit() Declaration public static void TopBarGradiantSubmit() | Improve this Doc View Source TopBarRedTeamNameSubmit() Declaration public static void TopBarRedTeamNameSubmit() | Improve this Doc View Source TopBarRedTeamScoreSubmit() Declaration public static void TopBarRedTeamScoreSubmit()" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html", + "title": "Class EndGameView1Page.FormatingData | OSL", + "keywords": "Class EndGameView1Page.FormatingData Inheritance System.Object EndGameView1Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroundColor Declaration public string BackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorColor1 Declaration public string BackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorColor2 Declaration public string BackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorDeg Declaration public string BackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorPercent1 Declaration public string BackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorPercent2 Declaration public string BackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColor Declaration public string BansBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorColor1 Declaration public string BansBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorColor2 Declaration public string BansBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorDeg Declaration public string BansBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorPercent1 Declaration public string BansBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorPercent2 Declaration public string BansBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBorderColor Declaration public string BansBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansGradiant Declaration public string BansGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansTextColor Declaration public string BansTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColor Declaration public string ChampionInfoBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorColor1 Declaration public string ChampionInfoBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorColor2 Declaration public string ChampionInfoBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorDeg Declaration public string ChampionInfoBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorPercent1 Declaration public string ChampionInfoBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorPercent2 Declaration public string ChampionInfoBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBlueBarColor Declaration public string ChampionInfoBlueBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBlueDegaTextColor Declaration public string ChampionInfoBlueDegaTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBorderColor Declaration public string ChampionInfoBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoGradiant Declaration public string ChampionInfoGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoRedBarColor Declaration public string ChampionInfoRedBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoRedDegaTextColor Declaration public string ChampionInfoRedDegaTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoText Declaration public string ChampionInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoTextColor Declaration public string ChampionInfoTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColor Declaration public string GlobalStatsBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorColor1 Declaration public string GlobalStatsBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorColor2 Declaration public string GlobalStatsBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorDeg Declaration public string GlobalStatsBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorPercent1 Declaration public string GlobalStatsBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorPercent2 Declaration public string GlobalStatsBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBlueTextColor Declaration public string GlobalStatsBlueTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBorderColor Declaration public string GlobalStatsBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsGradiant Declaration public string GlobalStatsGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsRedTextColor Declaration public string GlobalStatsRedTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsTextColor Declaration public string GlobalStatsTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColor Declaration public string GoldDiffBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorColor1 Declaration public string GoldDiffBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorColor2 Declaration public string GoldDiffBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorDeg Declaration public string GoldDiffBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorPercent1 Declaration public string GoldDiffBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorPercent2 Declaration public string GoldDiffBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBarColor Declaration public string GoldDiffBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBluePointGoldColor Declaration public string GoldDiffBluePointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBlueTextGoldColor Declaration public string GoldDiffBlueTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBorderColor Declaration public string GoldDiffBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffGradiant Declaration public string GoldDiffGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffLinkPointGoldColor Declaration public string GoldDiffLinkPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffRedPointGoldColor Declaration public string GoldDiffRedPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffRedTextGoldColor Declaration public string GoldDiffRedTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffStartEndPointGoldColor Declaration public string GoldDiffStartEndPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffText Declaration public string GoldDiffText { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffTextColor Declaration public string GoldDiffTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffZeroPointGoldColor Declaration public string GoldDiffZeroPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffZeroTextGoldColor Declaration public string GoldDiffZeroTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColor Declaration public string TopBarBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorColor1 Declaration public string TopBarBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorColor2 Declaration public string TopBarBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorDeg Declaration public string TopBarBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorPercent1 Declaration public string TopBarBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorPercent2 Declaration public string TopBarBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamName Declaration public string TopBarBlueTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamNameColor Declaration public string TopBarBlueTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScore Declaration public string TopBarBlueTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScoreColor Declaration public string TopBarBlueTeamScoreColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamWinLossColor Declaration public string TopBarBlueTeamWinLossColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBorderColor Declaration public string TopBarBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarGradiant Declaration public string TopBarGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamName Declaration public string TopBarRedTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamNameColor Declaration public string TopBarRedTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScore Declaration public string TopBarRedTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScoreColor Declaration public string TopBarRedTeamScoreColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamWinLossColor Declaration public string TopBarRedTeamWinLossColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerColor Declaration public string TopBarTimerColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerText Declaration public string TopBarTimerText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerTextColor Declaration public string TopBarTimerTextColor { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html", + "title": "Class EndGameView1Page | OSL", + "keywords": "Class EndGameView1Page Inheritance System.Object EndGameView1Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class EndGameView1Page Fields | Improve this Doc View Source formatingData Declaration public static EndGameView1Page.FormatingData formatingData Field Value Type Description EndGameView1Page.FormatingData | Improve this Doc View Source goldDiff Declaration public static List goldDiff Field Value Type Description List < System.Int32 > Methods | Improve this Doc View Source ConvertToAngle(Int32, Double, Int32, Double) Declaration public static string ConvertToAngle(int x, double y, int prex, double prey) Parameters Type Name Description System.Int32 x System.Double y System.Int32 prex System.Double prey Returns Type Description System.String | Improve this Doc View Source ConvertToHyp(Int32, Double, Int32, Double) Declaration public static string ConvertToHyp(int x, double y, int prex, double prey) Parameters Type Name Description System.Int32 x System.Double y System.Int32 prex System.Double prey Returns Type Description System.String | Improve this Doc View Source ConvertToK(Double) Declaration public string ConvertToK(double total) Parameters Type Name Description System.Double total Returns Type Description System.String | Improve this Doc View Source ConvertToString(Double) Declaration public static string ConvertToString(double x) Parameters Type Name Description System.Double x Returns Type Description System.String | Improve this Doc View Source ConvertToString(Int32) Declaration public static string ConvertToString(int x) Parameters Type Name Description System.Int32 x Returns Type Description System.String | Improve this Doc View Source ConvertToWidth(Int32) Declaration public string ConvertToWidth(int total) Parameters Type Name Description System.Int32 total Returns Type Description System.String | Improve this Doc View Source CreateTabGold() Declaration public static void CreateTabGold() | Improve this Doc View Source GetBaronKillBlue() Declaration public string GetBaronKillBlue() Returns Type Description System.String | Improve this Doc View Source GetBaronKillRed() Declaration public string GetBaronKillRed() Returns Type Description System.String | Improve this Doc View Source GetChampionPath(String) Declaration public string GetChampionPath(string championId) Parameters Type Name Description System.String championId Returns Type Description System.String | Improve this Doc View Source GetChampionPathByPath(String) Declaration public string GetChampionPathByPath(string championId) Parameters Type Name Description System.String championId Returns Type Description System.String | Improve this Doc View Source GetDragonsKill(String) Declaration public string GetDragonsKill(string monsterSubType) Parameters Type Name Description System.String monsterSubType Returns Type Description System.String | Improve this Doc View Source GetElderKillBlue() Declaration public string GetElderKillBlue() Returns Type Description System.String | Improve this Doc View Source GetElderKillRed() Declaration public string GetElderKillRed() Returns Type Description System.String | Improve this Doc View Source GetGoldBlue() Declaration public string GetGoldBlue() Returns Type Description System.String | Improve this Doc View Source GetGoldRed() Declaration public string GetGoldRed() Returns Type Description System.String | Improve this Doc View Source GetHeraldKillBlue() Declaration public string GetHeraldKillBlue() Returns Type Description System.String | Improve this Doc View Source GetHeraldKillRed() Declaration public string GetHeraldKillRed() Returns Type Description System.String | Improve this Doc View Source GetKDABlue() Declaration public string GetKDABlue() Returns Type Description System.String | Improve this Doc View Source GetKDARed() Declaration public string GetKDARed() Returns Type Description System.String | Improve this Doc View Source GetTimer() Declaration public string GetTimer() Returns Type Description System.String | Improve this Doc View Source GetTimerDiv(Double) Declaration public string GetTimerDiv(double div) Parameters Type Name Description System.Double div Returns Type Description System.String | Improve this Doc View Source GetTimerInt() Declaration public int GetTimerInt() Returns Type Description System.Int32 | Improve this Doc View Source GetTowerKillBlue() Declaration public string GetTowerKillBlue() Returns Type Description System.String | Improve this Doc View Source GetTowerKillRed() Declaration public string GetTowerKillRed() Returns Type Description System.String | Improve this Doc View Source GetWinLossBlue() Declaration public string GetWinLossBlue() Returns Type Description System.String | Improve this Doc View Source GetWinLossRed() Declaration public string GetWinLossRed() Returns Type Description System.String | Improve this Doc View Source MaxGold() Declaration public static int MaxGold() Returns Type Description System.Int32 | Improve this Doc View Source ResetColor() Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html", + "title": "Class EndGameView2Page.FormatingData | OSL", + "keywords": "Class EndGameView2Page.FormatingData Inheritance System.Object EndGameView2Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroundColor Declaration public string BackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorColor1 Declaration public string BackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorColor2 Declaration public string BackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorDeg Declaration public string BackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorPercent1 Declaration public string BackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorPercent2 Declaration public string BackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColor Declaration public string BansBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorColor1 Declaration public string BansBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorColor2 Declaration public string BansBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorDeg Declaration public string BansBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorPercent1 Declaration public string BansBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorPercent2 Declaration public string BansBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBorderColor Declaration public string BansBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansGradiant Declaration public string BansGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansTextColor Declaration public string BansTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColor Declaration public string ChampionInfoBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorColor1 Declaration public string ChampionInfoBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorColor2 Declaration public string ChampionInfoBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorDeg Declaration public string ChampionInfoBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorPercent1 Declaration public string ChampionInfoBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorPercent2 Declaration public string ChampionInfoBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBlueBarColor Declaration public string ChampionInfoBlueBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBlueDegaTextColor Declaration public string ChampionInfoBlueDegaTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBorderColor Declaration public string ChampionInfoBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoGradiant Declaration public string ChampionInfoGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoRedBarColor Declaration public string ChampionInfoRedBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoRedDegaTextColor Declaration public string ChampionInfoRedDegaTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoText Declaration public string ChampionInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoTextColor Declaration public string ChampionInfoTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColor Declaration public string GlobalStatsBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorColor1 Declaration public string GlobalStatsBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorColor2 Declaration public string GlobalStatsBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorDeg Declaration public string GlobalStatsBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorPercent1 Declaration public string GlobalStatsBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorPercent2 Declaration public string GlobalStatsBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBlueTextColor Declaration public string GlobalStatsBlueTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBorderColor Declaration public string GlobalStatsBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsGradiant Declaration public string GlobalStatsGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsRedTextColor Declaration public string GlobalStatsRedTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsTextColor Declaration public string GlobalStatsTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColor Declaration public string GoldDiffBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorColor1 Declaration public string GoldDiffBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorColor2 Declaration public string GoldDiffBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorDeg Declaration public string GoldDiffBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorPercent1 Declaration public string GoldDiffBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorPercent2 Declaration public string GoldDiffBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBarColor Declaration public string GoldDiffBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBluePointGoldColor Declaration public string GoldDiffBluePointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBlueTextGoldColor Declaration public string GoldDiffBlueTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBorderColor Declaration public string GoldDiffBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffGradiant Declaration public string GoldDiffGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffLinkPointGoldColor Declaration public string GoldDiffLinkPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffRedPointGoldColor Declaration public string GoldDiffRedPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffRedTextGoldColor Declaration public string GoldDiffRedTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffStartEndPointGoldColor Declaration public string GoldDiffStartEndPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffText Declaration public string GoldDiffText { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffTextColor Declaration public string GoldDiffTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffZeroPointGoldColor Declaration public string GoldDiffZeroPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffZeroTextGoldColor Declaration public string GoldDiffZeroTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColor Declaration public string TopBarBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorColor1 Declaration public string TopBarBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorColor2 Declaration public string TopBarBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorDeg Declaration public string TopBarBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorPercent1 Declaration public string TopBarBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorPercent2 Declaration public string TopBarBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamName Declaration public string TopBarBlueTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamNameColor Declaration public string TopBarBlueTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScore Declaration public string TopBarBlueTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScoreColor Declaration public string TopBarBlueTeamScoreColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamWinLossColor Declaration public string TopBarBlueTeamWinLossColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBorderColor Declaration public string TopBarBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarGradiant Declaration public string TopBarGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamName Declaration public string TopBarRedTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamNameColor Declaration public string TopBarRedTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScore Declaration public string TopBarRedTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScoreColor Declaration public string TopBarRedTeamScoreColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamWinLossColor Declaration public string TopBarRedTeamWinLossColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerColor Declaration public string TopBarTimerColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerText Declaration public string TopBarTimerText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerTextColor Declaration public string TopBarTimerTextColor { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html", + "title": "Class EndGameView2Page | OSL", + "keywords": "Class EndGameView2Page Inheritance System.Object EndGameView2Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class EndGameView2Page Fields | Improve this Doc View Source formatingData Declaration public static EndGameView2Page.FormatingData formatingData Field Value Type Description EndGameView2Page.FormatingData | Improve this Doc View Source goldDiff Declaration public static List goldDiff Field Value Type Description List < System.Int32 > Methods | Improve this Doc View Source ConvertToAngle(Int32, Double, Int32, Double) Declaration public static string ConvertToAngle(int x, double y, int prex, double prey) Parameters Type Name Description System.Int32 x System.Double y System.Int32 prex System.Double prey Returns Type Description System.String | Improve this Doc View Source ConvertToHyp(Int32, Double, Int32, Double) Declaration public static string ConvertToHyp(int x, double y, int prex, double prey) Parameters Type Name Description System.Int32 x System.Double y System.Int32 prex System.Double prey Returns Type Description System.String | Improve this Doc View Source ConvertToK(Double) Declaration public string ConvertToK(double total) Parameters Type Name Description System.Double total Returns Type Description System.String | Improve this Doc View Source ConvertToString(Double) Declaration public static string ConvertToString(double x) Parameters Type Name Description System.Double x Returns Type Description System.String | Improve this Doc View Source ConvertToString(Int32) Declaration public static string ConvertToString(int x) Parameters Type Name Description System.Int32 x Returns Type Description System.String | Improve this Doc View Source ConvertToWidth(Int32) Declaration public string ConvertToWidth(int total) Parameters Type Name Description System.Int32 total Returns Type Description System.String | Improve this Doc View Source CreateTabGold() Declaration public static void CreateTabGold() | Improve this Doc View Source GetBaronKillBlue() Declaration public string GetBaronKillBlue() Returns Type Description System.String | Improve this Doc View Source GetBaronKillRed() Declaration public string GetBaronKillRed() Returns Type Description System.String | Improve this Doc View Source GetChampionPath(String) Declaration public string GetChampionPath(string championId) Parameters Type Name Description System.String championId Returns Type Description System.String | Improve this Doc View Source GetChampionPathByPath(String) Declaration public string GetChampionPathByPath(string championId) Parameters Type Name Description System.String championId Returns Type Description System.String | Improve this Doc View Source GetDragonsKill(String) Declaration public string GetDragonsKill(string monsterSubType) Parameters Type Name Description System.String monsterSubType Returns Type Description System.String | Improve this Doc View Source GetElderKillBlue() Declaration public string GetElderKillBlue() Returns Type Description System.String | Improve this Doc View Source GetElderKillRed() Declaration public string GetElderKillRed() Returns Type Description System.String | Improve this Doc View Source GetGoldBlue() Declaration public string GetGoldBlue() Returns Type Description System.String | Improve this Doc View Source GetGoldRed() Declaration public string GetGoldRed() Returns Type Description System.String | Improve this Doc View Source GetHeraldKillBlue() Declaration public string GetHeraldKillBlue() Returns Type Description System.String | Improve this Doc View Source GetHeraldKillRed() Declaration public string GetHeraldKillRed() Returns Type Description System.String | Improve this Doc View Source GetKDABlue() Declaration public string GetKDABlue() Returns Type Description System.String | Improve this Doc View Source GetKDARed() Declaration public string GetKDARed() Returns Type Description System.String | Improve this Doc View Source GetTimer() Declaration public string GetTimer() Returns Type Description System.String | Improve this Doc View Source GetTimerInt() Declaration public int GetTimerInt() Returns Type Description System.Int32 | Improve this Doc View Source GetTowerKillBlue() Declaration public string GetTowerKillBlue() Returns Type Description System.String | Improve this Doc View Source GetTowerKillRed() Declaration public string GetTowerKillRed() Returns Type Description System.String | Improve this Doc View Source GetWinLossBlue() Declaration public string GetWinLossBlue() Returns Type Description System.String | Improve this Doc View Source GetWinLossRed() Declaration public string GetWinLossRed() Returns Type Description System.String | Improve this Doc View Source MaxGold() Declaration public static int MaxGold() Returns Type Description System.Int32 | Improve this Doc View Source ResetColor() Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html", + "title": "Class EndGameView3Page.FormatingData | OSL", + "keywords": "Class EndGameView3Page.FormatingData Inheritance System.Object EndGameView3Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroundColor Declaration public string BackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorColor1 Declaration public string BackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorColor2 Declaration public string BackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorDeg Declaration public string BackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorPercent1 Declaration public string BackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroundColorPercent2 Declaration public string BackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColor Declaration public string BansBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorColor1 Declaration public string BansBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorColor2 Declaration public string BansBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorDeg Declaration public string BansBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorPercent1 Declaration public string BansBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBackgroundColorPercent2 Declaration public string BansBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansBorderColor Declaration public string BansBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansGradiant Declaration public string BansGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source BansTextColor Declaration public string BansTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColor Declaration public string ChampionInfoBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorColor1 Declaration public string ChampionInfoBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorColor2 Declaration public string ChampionInfoBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorDeg Declaration public string ChampionInfoBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorPercent1 Declaration public string ChampionInfoBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBackgroundColorPercent2 Declaration public string ChampionInfoBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBlueBarColor Declaration public string ChampionInfoBlueBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBlueDegaTextColor Declaration public string ChampionInfoBlueDegaTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoBorderColor Declaration public string ChampionInfoBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoGradiant Declaration public string ChampionInfoGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoRedBarColor Declaration public string ChampionInfoRedBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoRedDegaTextColor Declaration public string ChampionInfoRedDegaTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoText Declaration public string ChampionInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ChampionInfoTextColor Declaration public string ChampionInfoTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColor Declaration public string GlobalStatsBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorColor1 Declaration public string GlobalStatsBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorColor2 Declaration public string GlobalStatsBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorDeg Declaration public string GlobalStatsBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorPercent1 Declaration public string GlobalStatsBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBackgroundColorPercent2 Declaration public string GlobalStatsBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBlueTextColor Declaration public string GlobalStatsBlueTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsBorderColor Declaration public string GlobalStatsBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsGradiant Declaration public string GlobalStatsGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsRedTextColor Declaration public string GlobalStatsRedTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsSeparationColor Declaration public string GlobalStatsSeparationColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GlobalStatsTextColor Declaration public string GlobalStatsTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColor Declaration public string GoldDiffBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorColor1 Declaration public string GoldDiffBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorColor2 Declaration public string GoldDiffBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorDeg Declaration public string GoldDiffBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorPercent1 Declaration public string GoldDiffBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBackgroundColorPercent2 Declaration public string GoldDiffBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBarColor Declaration public string GoldDiffBarColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBluePointGoldColor Declaration public string GoldDiffBluePointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBlueTextGoldColor Declaration public string GoldDiffBlueTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffBorderColor Declaration public string GoldDiffBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffGradiant Declaration public string GoldDiffGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffLinkPointGoldColor Declaration public string GoldDiffLinkPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffRedPointGoldColor Declaration public string GoldDiffRedPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffRedTextGoldColor Declaration public string GoldDiffRedTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffStartEndPointGoldColor Declaration public string GoldDiffStartEndPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffText Declaration public string GoldDiffText { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffTextColor Declaration public string GoldDiffTextColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffZeroPointGoldColor Declaration public string GoldDiffZeroPointGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source GoldDiffZeroTextGoldColor Declaration public string GoldDiffZeroTextGoldColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColor Declaration public string TopBarBackgroundColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorColor1 Declaration public string TopBarBackgroundColorColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorColor2 Declaration public string TopBarBackgroundColorColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorDeg Declaration public string TopBarBackgroundColorDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorPercent1 Declaration public string TopBarBackgroundColorPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBackgroundColorPercent2 Declaration public string TopBarBackgroundColorPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamName Declaration public string TopBarBlueTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamNameColor Declaration public string TopBarBlueTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScore Declaration public string TopBarBlueTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamScoreColor Declaration public string TopBarBlueTeamScoreColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBlueTeamWinLossColor Declaration public string TopBarBlueTeamWinLossColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarBorderColor Declaration public string TopBarBorderColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarGradiant Declaration public string TopBarGradiant { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamName Declaration public string TopBarRedTeamName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamNameColor Declaration public string TopBarRedTeamNameColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScore Declaration public string TopBarRedTeamScore { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamScoreColor Declaration public string TopBarRedTeamScoreColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarRedTeamWinLossColor Declaration public string TopBarRedTeamWinLossColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerColor Declaration public string TopBarTimerColor { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerText Declaration public string TopBarTimerText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TopBarTimerTextColor Declaration public string TopBarTimerTextColor { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html", + "title": "Class EndGameView3Page | OSL", + "keywords": "Class EndGameView3Page Inheritance System.Object EndGameView3Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.EndGame Assembly : OSL-Server.dll Syntax public class EndGameView3Page Fields | Improve this Doc View Source formatingData Declaration public static EndGameView3Page.FormatingData formatingData Field Value Type Description EndGameView3Page.FormatingData | Improve this Doc View Source goldDiff Declaration public static List goldDiff Field Value Type Description List < System.Int32 > Methods | Improve this Doc View Source ConvertToAngle(Double, Double, Double, Double) Declaration public static string ConvertToAngle(double x, double y, double prex, double prey) Parameters Type Name Description System.Double x System.Double y System.Double prex System.Double prey Returns Type Description System.String | Improve this Doc View Source ConvertToHyp(Double, Double, Double, Double) Declaration public static string ConvertToHyp(double x, double y, double prex, double prey) Parameters Type Name Description System.Double x System.Double y System.Double prex System.Double prey Returns Type Description System.String | Improve this Doc View Source ConvertToK(Double) Declaration public string ConvertToK(double total) Parameters Type Name Description System.Double total Returns Type Description System.String | Improve this Doc View Source ConvertToString(Double) Declaration public static string ConvertToString(double x) Parameters Type Name Description System.Double x Returns Type Description System.String | Improve this Doc View Source ConvertToString(Int32) Declaration public static string ConvertToString(int x) Parameters Type Name Description System.Int32 x Returns Type Description System.String | Improve this Doc View Source ConvertToWidth(Int32) Declaration public string ConvertToWidth(int total) Parameters Type Name Description System.Int32 total Returns Type Description System.String | Improve this Doc View Source CreateTabGold() Declaration public static void CreateTabGold() | Improve this Doc View Source GetBaronKillBlue() Declaration public string GetBaronKillBlue() Returns Type Description System.String | Improve this Doc View Source GetBaronKillRed() Declaration public string GetBaronKillRed() Returns Type Description System.String | Improve this Doc View Source GetChampionPath(String) Declaration public string GetChampionPath(string championId) Parameters Type Name Description System.String championId Returns Type Description System.String | Improve this Doc View Source GetChampionPathByPath(String) Declaration public string GetChampionPathByPath(string championId) Parameters Type Name Description System.String championId Returns Type Description System.String | Improve this Doc View Source GetDragonsKill(String) Declaration public string GetDragonsKill(string monsterSubType) Parameters Type Name Description System.String monsterSubType Returns Type Description System.String | Improve this Doc View Source GetElderKillBlue() Declaration public string GetElderKillBlue() Returns Type Description System.String | Improve this Doc View Source GetElderKillRed() Declaration public string GetElderKillRed() Returns Type Description System.String | Improve this Doc View Source GetGoldBlue() Declaration public string GetGoldBlue() Returns Type Description System.String | Improve this Doc View Source GetGoldRed() Declaration public string GetGoldRed() Returns Type Description System.String | Improve this Doc View Source GetHeraldKillBlue() Declaration public string GetHeraldKillBlue() Returns Type Description System.String | Improve this Doc View Source GetHeraldKillRed() Declaration public string GetHeraldKillRed() Returns Type Description System.String | Improve this Doc View Source GetKDABlue() Declaration public string GetKDABlue() Returns Type Description System.String | Improve this Doc View Source GetKDARed() Declaration public string GetKDARed() Returns Type Description System.String | Improve this Doc View Source GetTimer() Declaration public string GetTimer() Returns Type Description System.String | Improve this Doc View Source GetTimerInt() Declaration public int GetTimerInt() Returns Type Description System.Int32 | Improve this Doc View Source GetTowerKillBlue() Declaration public string GetTowerKillBlue() Returns Type Description System.String | Improve this Doc View Source GetTowerKillRed() Declaration public string GetTowerKillRed() Returns Type Description System.String | Improve this Doc View Source GetWinLossBlue() Declaration public string GetWinLossBlue() Returns Type Description System.String | Improve this Doc View Source GetWinLossRed() Declaration public string GetWinLossRed() Returns Type Description System.String | Improve this Doc View Source MaxGold() Declaration public static int MaxGold() Returns Type Description System.Int32 | Improve this Doc View Source ResetColor() Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.EndGame.html": { + "href": "apiserver/OSL_Server.Pages.EndGame.html", + "title": "Namespace OSL_Server.Pages.EndGame | OSL", + "keywords": "Namespace OSL_Server.Pages.EndGame Classes EndGamePage EndGamePage.TextValueOverlayView1 EndGamePage.TextValueOverlayView2 EndGamePage.TextValueOverlayView3 EndGameView1Page EndGameView1Page.FormatingData EndGameView2Page EndGameView2Page.FormatingData EndGameView3Page EndGameView3Page.FormatingData" + }, + "apiserver/OSL_Server.Pages.EndGameTestPage.html": { + "href": "apiserver/OSL_Server.Pages.EndGameTestPage.html", + "title": "Class EndGameTestPage | OSL", + "keywords": "Class EndGameTestPage Inheritance System.Object EndGameTestPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class EndGameTestPage Methods | Improve this Doc View Source convertToAngle(Int32, Double, Int32, Double) Declaration public static string convertToAngle(int x, double y, int prex, double prey) Parameters Type Name Description System.Int32 x System.Double y System.Int32 prex System.Double prey Returns Type Description System.String | Improve this Doc View Source convertToHyp(Int32, Double, Int32, Double) Declaration public static string convertToHyp(int x, double y, int prex, double prey) Parameters Type Name Description System.Int32 x System.Double y System.Int32 prex System.Double prey Returns Type Description System.String | Improve this Doc View Source convertToString(Double) Declaration public static string convertToString(double x) Parameters Type Name Description System.Double x Returns Type Description System.String | Improve this Doc View Source convertToString(Int32) Declaration public static string convertToString(int x) Parameters Type Name Description System.Int32 x Returns Type Description System.String | Improve this Doc View Source yolo() Declaration public static void yolo()" }, "apiserver/OSL_Server.Pages.ErrorModel.html": { "href": "apiserver/OSL_Server.Pages.ErrorModel.html", @@ -497,101 +632,211 @@ "apiserver/OSL_Server.Pages.html": { "href": "apiserver/OSL_Server.Pages.html", "title": "Namespace OSL_Server.Pages | OSL", - "keywords": "Namespace OSL_Server.Pages Classes CDragonPage CDragon Page ChampSelectPage Champ Select Page ChampSelectPage.TextValueOverlayView1 Text and value for display color, information on champ select view 1 ChampSelectPage.TextValueOverlayView2 Text and value for display color, information on champ select view 2 ChampSelectPage.TextValueOverlayView3 Text and value for display color, information on champ select view 3 ChampSelectPage.TextValueOverlayView4 Text and value for display color, information on champ select view 4 ChampSelectView1Page Champ Select View1 Page ChampSelectView1Page.FormatingData Formating Data ChampSelectView2Page Champ Select View2 Page ChampSelectView2Page.FormatingData ChampSelectView3Page Champ Select View3 Page ChampSelectView3Page.FormatingData Formating Data ChampSelectView4Page Champ Select View4 Page ChampSelectView4Page.FormatingData Formating Data ConfigPage Config Page ConfigPage.ConfigOverlayText EndGamePage ErrorModel Index InGamePage InGamePage.TextValueOverlayView1 InGamePage.TextValueOverlayView2 InGamePage.TextValueOverlayView3 InGameView1Page InGameView1Page.FormatingData Formating Data InGameView2Page InGameView2Page.FormatingData InGameView3Page InGameView3Page.FormatingData Formating Data RecapLinkPage WaitingGamePage WaitingGameStartPage" + "keywords": "Namespace OSL_Server.Pages Classes CDragonPage CDragon Page ConfigPage Config Page ConfigPage.ConfigOverlayText EndGameTestPage ErrorModel Index RecapLinkPage WaitingGamePage" }, "apiserver/OSL_Server.Pages.Index.html": { "href": "apiserver/OSL_Server.Pages.Index.html", "title": "Class Index | OSL", "keywords": "Class Index Inheritance System.Object Index Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class Index" }, - "apiserver/OSL_Server.Pages.InGamePage.html": { - "href": "apiserver/OSL_Server.Pages.InGamePage.html", + "apiserver/OSL_Server.Pages.InGame.html": { + "href": "apiserver/OSL_Server.Pages.InGame.html", + "title": "Namespace OSL_Server.Pages.InGame | OSL", + "keywords": "Namespace OSL_Server.Pages.InGame Classes InGamePage InGamePage.TextValueOverlayView1 InGamePage.TextValueOverlayView2 InGamePage.TextValueOverlayView3 InGameView1Page InGameView1Page.FormatingData Formating Data InGameView2Page InGameView2Page.FormatingData InGameView3Page InGameView3Page.FormatingData Formating Data" + }, + "apiserver/OSL_Server.Pages.InGame.InGamePage.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGamePage.html", "title": "Class InGamePage | OSL", - "keywords": "Class InGamePage Inheritance System.Object InGamePage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class InGamePage Fields | Improve this Doc View Source colorPickerOverlay1 Declaration public static string colorPickerOverlay1 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay2 Declaration public static string colorPickerOverlay2 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay3 Declaration public static string colorPickerOverlay3 Field Value Type Description System.String | Improve this Doc View Source colorValue Declaration public static string colorValue Field Value Type Description System.String" + "keywords": "Class InGamePage Inheritance System.Object InGamePage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class InGamePage Fields | Improve this Doc View Source colorPickerOverlay1 Declaration public static string colorPickerOverlay1 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay2 Declaration public static string colorPickerOverlay2 Field Value Type Description System.String | Improve this Doc View Source colorPickerOverlay3 Declaration public static string colorPickerOverlay3 Field Value Type Description System.String | Improve this Doc View Source colorValue Declaration public static string colorValue Field Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html": { - "href": "apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html", + "apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html", "title": "Class InGamePage.TextValueOverlayView1 | OSL", - "keywords": "Class InGamePage.TextValueOverlayView1 Inheritance System.Object InGamePage.TextValueOverlayView1 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView1 Properties | Improve this Doc View Source BlueTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string RedTeamText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueTeamScoreTextSubmit() Declaration public static void BlueTeamScoreTextSubmit() | Improve this Doc View Source BlueTeamTextSubmit() Declaration public static void BlueTeamTextSubmit() | Improve this Doc View Source InputCheckboxSubmit() Declaration public static void InputCheckboxSubmit() | Improve this Doc View Source RedTeamScoreTextSubmit() Declaration public static void RedTeamScoreTextSubmit() | Improve this Doc View Source RedTeamTextSubmit() Declaration public static void RedTeamTextSubmit() | Improve this Doc View Source SetColorBlueTeamScoreText() Declaration public static void SetColorBlueTeamScoreText() | Improve this Doc View Source SetColorBlueTeamText() Declaration public static void SetColorBlueTeamText() | Improve this Doc View Source SetColorRedTeamScoreText() Declaration public static void SetColorRedTeamScoreText() | Improve this Doc View Source SetColorRedTeamText() Declaration public static void SetColorRedTeamText() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue()" + "keywords": "Class InGamePage.TextValueOverlayView1 Inheritance System.Object InGamePage.TextValueOverlayView1 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class TextValueOverlayView1 Properties | Improve this Doc View Source BlueTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string RedTeamText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueTeamScoreTextSubmit() Declaration public static void BlueTeamScoreTextSubmit() | Improve this Doc View Source BlueTeamTextSubmit() Declaration public static void BlueTeamTextSubmit() | Improve this Doc View Source InputCheckboxSubmit() Declaration public static void InputCheckboxSubmit() | Improve this Doc View Source RedTeamScoreTextSubmit() Declaration public static void RedTeamScoreTextSubmit() | Improve this Doc View Source RedTeamTextSubmit() Declaration public static void RedTeamTextSubmit() | Improve this Doc View Source SetColorBlueTeamScoreText() Declaration public static void SetColorBlueTeamScoreText() | Improve this Doc View Source SetColorBlueTeamText() Declaration public static void SetColorBlueTeamText() | Improve this Doc View Source SetColorRedTeamScoreText() Declaration public static void SetColorRedTeamScoreText() | Improve this Doc View Source SetColorRedTeamText() Declaration public static void SetColorRedTeamText() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue()" }, - "apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html": { - "href": "apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html", + "apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html", "title": "Class InGamePage.TextValueOverlayView2 | OSL", - "keywords": "Class InGamePage.TextValueOverlayView2 Inheritance System.Object InGamePage.TextValueOverlayView2 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView2 Properties | Improve this Doc View Source BlueTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string RedTeamText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueTeamScoreTextSubmit() Declaration public static void BlueTeamScoreTextSubmit() | Improve this Doc View Source BlueTeamTextSubmit() Declaration public static void BlueTeamTextSubmit() | Improve this Doc View Source InputCheckboxSubmit() Declaration public static void InputCheckboxSubmit() | Improve this Doc View Source RedTeamScoreTextSubmit() Declaration public static void RedTeamScoreTextSubmit() | Improve this Doc View Source RedTeamTextSubmit() Declaration public static void RedTeamTextSubmit() | Improve this Doc View Source SetColorBlueTeamScoreText() Declaration public static void SetColorBlueTeamScoreText() | Improve this Doc View Source SetColorBlueTeamText() Declaration public static void SetColorBlueTeamText() | Improve this Doc View Source SetColorRedTeamScoreText() Declaration public static void SetColorRedTeamScoreText() | Improve this Doc View Source SetColorRedTeamText() Declaration public static void SetColorRedTeamText() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue()" + "keywords": "Class InGamePage.TextValueOverlayView2 Inheritance System.Object InGamePage.TextValueOverlayView2 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class TextValueOverlayView2 Properties | Improve this Doc View Source BlueTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedTeamScoreText Declaration [StringLength(7, ErrorMessage = \"Name is too long (7 character limit).\")] public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration [StringLength(37, ErrorMessage = \"Name is too long (37 character limit).\")] public string RedTeamText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source BlueTeamScoreTextSubmit() Declaration public static void BlueTeamScoreTextSubmit() | Improve this Doc View Source BlueTeamTextSubmit() Declaration public static void BlueTeamTextSubmit() | Improve this Doc View Source InputCheckboxSubmit() Declaration public static void InputCheckboxSubmit() | Improve this Doc View Source RedTeamScoreTextSubmit() Declaration public static void RedTeamScoreTextSubmit() | Improve this Doc View Source RedTeamTextSubmit() Declaration public static void RedTeamTextSubmit() | Improve this Doc View Source SetColorBlueTeamScoreText() Declaration public static void SetColorBlueTeamScoreText() | Improve this Doc View Source SetColorBlueTeamText() Declaration public static void SetColorBlueTeamText() | Improve this Doc View Source SetColorRedTeamScoreText() Declaration public static void SetColorRedTeamScoreText() | Improve this Doc View Source SetColorRedTeamText() Declaration public static void SetColorRedTeamText() | Improve this Doc View Source SwitchSideRedBlue() Declaration public static void SwitchSideRedBlue()" }, - "apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html": { - "href": "apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html", + "apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html", "title": "Class InGamePage.TextValueOverlayView3 | OSL", - "keywords": "Class InGamePage.TextValueOverlayView3 Inheritance System.Object InGamePage.TextValueOverlayView3 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class TextValueOverlayView3 Properties | Improve this Doc View Source ReplayInfoText Declaration [StringLength(9, ErrorMessage = \"Name is too long (9 character limit).\")] public string ReplayInfoText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source InputCheckboxSubmit() Declaration public static void InputCheckboxSubmit() | Improve this Doc View Source ReplayInfoTextSubmit() Declaration public static void ReplayInfoTextSubmit() | Improve this Doc View Source SetColorReplayInfoText() Declaration public static void SetColorReplayInfoText()" + "keywords": "Class InGamePage.TextValueOverlayView3 Inheritance System.Object InGamePage.TextValueOverlayView3 Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class TextValueOverlayView3 Properties | Improve this Doc View Source ReplayInfoText Declaration [StringLength(9, ErrorMessage = \"Name is too long (9 character limit).\")] public string ReplayInfoText { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source InputCheckboxSubmit() Declaration public static void InputCheckboxSubmit() | Improve this Doc View Source ReplayInfoTextSubmit() Declaration public static void ReplayInfoTextSubmit() | Improve this Doc View Source SetColorReplayInfoText() Declaration public static void SetColorReplayInfoText()" }, - "apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html", + "apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html", "title": "Class InGameView1Page.FormatingData | OSL", - "keywords": "Class InGameView1Page.FormatingData Formating Data Inheritance System.Object InGameView1Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BluePlayerFrame Declaration public string BluePlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamScoreText Declaration public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamScoreText Declaration public string ColorBlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamText Declaration public string ColorBlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamScoreText Declaration public string ColorRedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamText Declaration public string ColorRedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayBluePlayerFrame Declaration public bool DisplayBluePlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeam Declaration public bool DisplayBlueTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamScore Declaration public bool DisplayBlueTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamText Declaration public bool DisplayBlueTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayHeraldBaronTimer Declaration public bool DisplayHeraldBaronTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayLeftInfo Declaration public bool DisplayLeftInfo { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedPlayerFrame Declaration public bool DisplayRedPlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeam Declaration public bool DisplayRedTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamScore Declaration public bool DisplayRedTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamText Declaration public bool DisplayRedTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRightInfo Declaration public bool DisplayRightInfo { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DragonTimerFrame Declaration public string DragonTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source HeraldBaronTimerFrame Declaration public string HeraldBaronTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source LeftInfoFrame Declaration public string LeftInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedPlayerFrame Declaration public string RedPlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamScoreText Declaration public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration public string RedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RightInfoFrame Declaration public string RightInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamBanner Declaration public string TeamBanner { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamScoreBanner Declaration public string TeamScoreBanner { get; set; } Property Value Type Description System.String" + "keywords": "Class InGameView1Page.FormatingData Formating Data Inheritance System.Object InGameView1Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BluePlayerFrame Declaration public string BluePlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamScoreText Declaration public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamScoreText Declaration public string ColorBlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamText Declaration public string ColorBlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamScoreText Declaration public string ColorRedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamText Declaration public string ColorRedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayBluePlayerFrame Declaration public bool DisplayBluePlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeam Declaration public bool DisplayBlueTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamScore Declaration public bool DisplayBlueTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamText Declaration public bool DisplayBlueTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayHeraldBaronTimer Declaration public bool DisplayHeraldBaronTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayLeftInfo Declaration public bool DisplayLeftInfo { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedPlayerFrame Declaration public bool DisplayRedPlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeam Declaration public bool DisplayRedTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamScore Declaration public bool DisplayRedTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamText Declaration public bool DisplayRedTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRightInfo Declaration public bool DisplayRightInfo { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DragonTimerFrame Declaration public string DragonTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source HeraldBaronTimerFrame Declaration public string HeraldBaronTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source LeftInfoFrame Declaration public string LeftInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedPlayerFrame Declaration public string RedPlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamScoreText Declaration public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration public string RedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RightInfoFrame Declaration public string RightInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamBanner Declaration public string TeamBanner { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamScoreBanner Declaration public string TeamScoreBanner { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.InGameView1Page.html": { - "href": "apiserver/OSL_Server.Pages.InGameView1Page.html", + "apiserver/OSL_Server.Pages.InGame.InGameView1Page.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGameView1Page.html", "title": "Class InGameView1Page | OSL", - "keywords": "Class InGameView1Page Inheritance System.Object InGameView1Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class InGameView1Page Fields | Improve this Doc View Source formatingData Declaration public static InGameView1Page.FormatingData formatingData Field Value Type Description InGameView1Page.FormatingData Methods | Improve this Doc View Source ResetColor() Load default data in game Declaration public static void ResetColor()" + "keywords": "Class InGameView1Page Inheritance System.Object InGameView1Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class InGameView1Page Fields | Improve this Doc View Source formatingData Declaration public static InGameView1Page.FormatingData formatingData Field Value Type Description InGameView1Page.FormatingData Methods | Improve this Doc View Source ResetColor() Load default data in game Declaration public static void ResetColor()" }, - "apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html", + "apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html", "title": "Class InGameView2Page.FormatingData | OSL", - "keywords": "Class InGameView2Page.FormatingData Inheritance System.Object InGameView2Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BluePlayerFrame Declaration public string BluePlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamScoreText Declaration public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamScoreText Declaration public string ColorBlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamText Declaration public string ColorBlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamScoreText Declaration public string ColorRedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamText Declaration public string ColorRedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayBluePlayerFrame Declaration public bool DisplayBluePlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeam Declaration public bool DisplayBlueTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamScore Declaration public bool DisplayBlueTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamText Declaration public bool DisplayBlueTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayHeraldBaronTimer Declaration public bool DisplayHeraldBaronTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayLeftInfo Declaration public bool DisplayLeftInfo { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedPlayerFrame Declaration public bool DisplayRedPlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeam Declaration public bool DisplayRedTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamScore Declaration public bool DisplayRedTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamText Declaration public bool DisplayRedTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DragonTimerFrame Declaration public string DragonTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source HeraldBaronTimerFrame Declaration public string HeraldBaronTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source LeftInfoFrame Declaration public string LeftInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedPlayerFrame Declaration public string RedPlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamScoreText Declaration public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration public string RedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamBanner Declaration public string TeamBanner { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamScoreBanner Declaration public string TeamScoreBanner { get; set; } Property Value Type Description System.String" + "keywords": "Class InGameView2Page.FormatingData Inheritance System.Object InGameView2Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BluePlayerFrame Declaration public string BluePlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamScoreText Declaration public string BlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueTeamText Declaration public string BlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamScoreText Declaration public string ColorBlueTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorBlueTeamText Declaration public string ColorBlueTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamScoreText Declaration public string ColorRedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorRedTeamText Declaration public string ColorRedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayBluePlayerFrame Declaration public bool DisplayBluePlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeam Declaration public bool DisplayBlueTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamScore Declaration public bool DisplayBlueTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayBlueTeamText Declaration public bool DisplayBlueTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayDragonTimer Declaration public bool DisplayDragonTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayHeraldBaronTimer Declaration public bool DisplayHeraldBaronTimer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayLeftInfo Declaration public bool DisplayLeftInfo { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedPlayerFrame Declaration public bool DisplayRedPlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeam Declaration public bool DisplayRedTeam { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamScore Declaration public bool DisplayRedTeamScore { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedTeamText Declaration public bool DisplayRedTeamText { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DragonTimerFrame Declaration public string DragonTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source HeraldBaronTimerFrame Declaration public string HeraldBaronTimerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source LeftInfoFrame Declaration public string LeftInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedPlayerFrame Declaration public string RedPlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamScoreText Declaration public string RedTeamScoreText { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedTeamText Declaration public string RedTeamText { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamBanner Declaration public string TeamBanner { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamScoreBanner Declaration public string TeamScoreBanner { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.InGameView2Page.html": { - "href": "apiserver/OSL_Server.Pages.InGameView2Page.html", + "apiserver/OSL_Server.Pages.InGame.InGameView2Page.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGameView2Page.html", "title": "Class InGameView2Page | OSL", - "keywords": "Class InGameView2Page Inheritance System.Object InGameView2Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class InGameView2Page Fields | Improve this Doc View Source formatingData Declaration public static InGameView2Page.FormatingData formatingData Field Value Type Description InGameView2Page.FormatingData Methods | Improve this Doc View Source ResetColor() Load default data in game Declaration public static void ResetColor()" + "keywords": "Class InGameView2Page Inheritance System.Object InGameView2Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class InGameView2Page Fields | Improve this Doc View Source formatingData Declaration public static InGameView2Page.FormatingData formatingData Field Value Type Description InGameView2Page.FormatingData Methods | Improve this Doc View Source ResetColor() Load default data in game Declaration public static void ResetColor()" }, - "apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html": { - "href": "apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html", + "apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html", "title": "Class InGameView3Page.FormatingData | OSL", - "keywords": "Class InGameView3Page.FormatingData Formating Data Inheritance System.Object InGameView3Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BluePlayerFrame Declaration public string BluePlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorReplayInfoText Declaration public string ColorReplayInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayBluePlayerFrame Declaration public bool DisplayBluePlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedPlayerFrame Declaration public bool DisplayRedPlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayReplayInfoFrame Declaration public bool DisplayReplayInfoFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedPlayerFrame Declaration public string RedPlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source ReplayInfoFrame Declaration public string ReplayInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source ReplayInfoText Declaration public string ReplayInfoText { get; set; } Property Value Type Description System.String" + "keywords": "Class InGameView3Page.FormatingData Formating Data Inheritance System.Object InGameView3Page.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BluePlayerFrame Declaration public string BluePlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source ColorReplayInfoText Declaration public string ColorReplayInfoText { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source DisplayBluePlayerFrame Declaration public bool DisplayBluePlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayRedPlayerFrame Declaration public bool DisplayRedPlayerFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source DisplayReplayInfoFrame Declaration public bool DisplayReplayInfoFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedPlayerFrame Declaration public string RedPlayerFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source ReplayInfoFrame Declaration public string ReplayInfoFrame { get; set; } Property Value Type Description System.String | Improve this Doc View Source ReplayInfoText Declaration public string ReplayInfoText { get; set; } Property Value Type Description System.String" }, - "apiserver/OSL_Server.Pages.InGameView3Page.html": { - "href": "apiserver/OSL_Server.Pages.InGameView3Page.html", + "apiserver/OSL_Server.Pages.InGame.InGameView3Page.html": { + "href": "apiserver/OSL_Server.Pages.InGame.InGameView3Page.html", "title": "Class InGameView3Page | OSL", - "keywords": "Class InGameView3Page Inheritance System.Object InGameView3Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class InGameView3Page Fields | Improve this Doc View Source formatingData Declaration public static InGameView3Page.FormatingData formatingData Field Value Type Description InGameView3Page.FormatingData Methods | Improve this Doc View Source ResetColor() Load default data in game Declaration public static void ResetColor()" + "keywords": "Class InGameView3Page Inheritance System.Object InGameView3Page Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.InGame Assembly : OSL-Server.dll Syntax public class InGameView3Page Fields | Improve this Doc View Source formatingData Declaration public static InGameView3Page.FormatingData formatingData Field Value Type Description InGameView3Page.FormatingData Methods | Improve this Doc View Source ResetColor() Load default data in game Declaration public static void ResetColor()" }, "apiserver/OSL_Server.Pages.RecapLinkPage.html": { "href": "apiserver/OSL_Server.Pages.RecapLinkPage.html", "title": "Class RecapLinkPage | OSL", "keywords": "Class RecapLinkPage Inheritance System.Object RecapLinkPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class RecapLinkPage" }, + "apiserver/OSL_Server.Pages.Runes.html": { + "href": "apiserver/OSL_Server.Pages.Runes.html", + "title": "Namespace OSL_Server.Pages.Runes | OSL", + "keywords": "Namespace OSL_Server.Pages.Runes Classes RunesAdcPage RunesAdcPage.FormatingData RunesAdcSuppPage RunesAdcSuppPage.FormatingData RunesAllPage RunesAllPage.FormatingData RunesJunglePage RunesJunglePage.FormatingData RunesMidPage RunesMidPage.FormatingData RunesPage RunesPage.FormatingData RunesPage.InfoForPerks RunesPage.LaneInfo RunesPage.Overlay RunesPage.Perks RunesSuppPage RunesSuppPage.FormatingData RunesTopPage RunesTopPage.FormatingData Enums RunesPage.Lanes" + }, + "apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html", + "title": "Class RunesAdcPage.FormatingData | OSL", + "keywords": "Class RunesAdcPage.FormatingData Inheritance System.Object RunesAdcPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor1 Declaration public string BackgroudGradientColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor2 Declaration public string BackgroudGradientColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientDeg Declaration public string BackgroudGradientDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent1 Declaration public string BackgroudGradientPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent2 Declaration public string BackgroudGradientPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePicture Declaration public string LanePicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html", + "title": "Class RunesAdcPage | OSL", + "keywords": "Class RunesAdcPage Inheritance System.Object RunesAdcPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesAdcPage Fields | Improve this Doc View Source formatingData Declaration public static RunesAdcPage.FormatingData formatingData Field Value Type Description RunesAdcPage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html", + "title": "Class RunesAdcSuppPage.FormatingData | OSL", + "keywords": "Class RunesAdcSuppPage.FormatingData Inheritance System.Object RunesAdcSuppPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureAdc Declaration public string LanePictureAdc { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureSupp Declaration public string LanePictureSupp { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html", + "title": "Class RunesAdcSuppPage | OSL", + "keywords": "Class RunesAdcSuppPage Inheritance System.Object RunesAdcSuppPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesAdcSuppPage Fields | Improve this Doc View Source formatingData Declaration public static RunesAdcSuppPage.FormatingData formatingData Field Value Type Description RunesAdcSuppPage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html", + "title": "Class RunesAllPage.FormatingData | OSL", + "keywords": "Class RunesAllPage.FormatingData Inheritance System.Object RunesAllPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor1 Declaration public string BackgroudGradientColor1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientColor2 Declaration public string BackgroudGradientColor2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientDeg Declaration public string BackgroudGradientDeg { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent1 Declaration public string BackgroudGradientPercent1 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BackgroudGradientPercent2 Declaration public string BackgroudGradientPercent2 { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureAdc Declaration public string LanePictureAdc { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureJungle Declaration public string LanePictureJungle { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureMid Declaration public string LanePictureMid { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureSupp Declaration public string LanePictureSupp { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePictureTop Declaration public string LanePictureTop { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesAllPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesAllPage.html", + "title": "Class RunesAllPage | OSL", + "keywords": "Class RunesAllPage Inheritance System.Object RunesAllPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesAllPage Fields | Improve this Doc View Source formatingData Declaration public static RunesAllPage.FormatingData formatingData Field Value Type Description RunesAllPage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html", + "title": "Class RunesJunglePage.FormatingData | OSL", + "keywords": "Class RunesJunglePage.FormatingData Inheritance System.Object RunesJunglePage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePicture Declaration public string LanePicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html", + "title": "Class RunesJunglePage | OSL", + "keywords": "Class RunesJunglePage Inheritance System.Object RunesJunglePage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesJunglePage Fields | Improve this Doc View Source formatingData Declaration public static RunesJunglePage.FormatingData formatingData Field Value Type Description RunesJunglePage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html", + "title": "Class RunesMidPage.FormatingData | OSL", + "keywords": "Class RunesMidPage.FormatingData Inheritance System.Object RunesMidPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePicture Declaration public string LanePicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesMidPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesMidPage.html", + "title": "Class RunesMidPage | OSL", + "keywords": "Class RunesMidPage Inheritance System.Object RunesMidPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesMidPage Fields | Improve this Doc View Source formatingData Declaration public static RunesMidPage.FormatingData formatingData Field Value Type Description RunesMidPage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html", + "title": "Class RunesPage.FormatingData | OSL", + "keywords": "Class RunesPage.FormatingData Inheritance System.Object RunesPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.html", + "title": "Class RunesPage | OSL", + "keywords": "Class RunesPage Inheritance System.Object RunesPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesPage Fields | Improve this Doc View Source colorPicker Declaration public static string colorPicker Field Value Type Description System.String | Improve this Doc View Source colorValue Declaration public static string colorValue Field Value Type Description System.String | Improve this Doc View Source formatingData Declaration public static RunesPage.FormatingData formatingData Field Value Type Description RunesPage.FormatingData | Improve this Doc View Source summonerPerksList Declaration public static List summonerPerksList Field Value Type Description List < RunesPage.InfoForPerks > Methods | Improve this Doc View Source CreateSummonerPerksList(String) Declaration public static void CreateSummonerPerksList(string summonerName) Parameters Type Name Description System.String summonerName | Improve this Doc View Source CreateSummonerPerksListV2(String) Declaration public static void CreateSummonerPerksListV2(string content) Parameters Type Name Description System.String content | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source ResetLanes() Declaration public static void ResetLanes()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html", + "title": "Class RunesPage.InfoForPerks | OSL", + "keywords": "Class RunesPage.InfoForPerks Inheritance System.Object RunesPage.InfoForPerks Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class InfoForPerks Properties | Improve this Doc View Source ChampionId Declaration public int ChampionId { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Lane Declaration public RunesPage.Lanes Lane { get; set; } Property Value Type Description RunesPage.Lanes | Improve this Doc View Source Perks Declaration public RunesPage.Perks Perks { get; set; } Property Value Type Description RunesPage.Perks | Improve this Doc View Source SummonerName Declaration public string SummonerName { get; set; } Property Value Type Description System.String | Improve this Doc View Source TeamId Declaration public int TeamId { get; set; } Property Value Type Description System.Int32" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html", + "title": "Class RunesPage.LaneInfo | OSL", + "keywords": "Class RunesPage.LaneInfo Inheritance System.Object RunesPage.LaneInfo Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class LaneInfo Properties | Improve this Doc View Source lanes Declaration public RunesPage.Lanes lanes { get; set; } Property Value Type Description RunesPage.Lanes" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html", + "title": "Enum RunesPage.Lanes | OSL", + "keywords": "Enum RunesPage.Lanes Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public enum Lanes Fields Name Description ADC Jungle Mid None Support Top" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html", + "title": "Class RunesPage.Overlay | OSL", + "keywords": "Class RunesPage.Overlay Inheritance System.Object RunesPage.Overlay Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class Overlay Fields | Improve this Doc View Source BlueSideColorBorderChampionNotSet Declaration public static string BlueSideColorBorderChampionNotSet Field Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampionNotSet Declaration public static string RedSideColorBorderChampionNotSet Field Value Type Description System.String Properties | Improve this Doc View Source BackgroudGradientDeg Declaration [Required] [Range(-360, 360, ErrorMessage = \"Accommodation invalid (-360-360).\")] public int BackgroudGradientDeg { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroudGradientPercent1 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroudGradientPercent1 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroudGradientPercent2 Declaration [Required] [Range(0, 100, ErrorMessage = \"Accommodation invalid (0-100).\")] public int BackgroudGradientPercent2 { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BackgroundPicture Declaration public bool BackgroundPicture { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source BlueSideColorBorderChampion Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int BlueSideColorBorderChampion { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ForegroundBackground Declaration public bool ForegroundBackground { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RedSideColorBorderChampion Declaration [Required] [Range(0, 10, ErrorMessage = \"Accommodation invalid (1-10).\")] public int RedSideColorBorderChampion { get; set; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source BackgroudGradientSubmit() Declaration public static void BackgroudGradientSubmit() | Improve this Doc View Source BackgroundPictureSubmit() Declaration public static void BackgroundPictureSubmit() | Improve this Doc View Source BlueSideColorBorderChampionSubmit() Declaration public static void BlueSideColorBorderChampionSubmit() | Improve this Doc View Source ForegroundBackgroundSubmit() Declaration public static void ForegroundBackgroundSubmit() | Improve this Doc View Source RedSideColorBorderChampionSubmit() Declaration public static void RedSideColorBorderChampionSubmit() | Improve this Doc View Source SetBackgroudGradientColor1() Declaration public static void SetBackgroudGradientColor1() | Improve this Doc View Source SetBackgroudGradientColor2() Declaration public static void SetBackgroudGradientColor2() | Improve this Doc View Source SetBlueSideColorBorderChampion() Declaration public static void SetBlueSideColorBorderChampion() | Improve this Doc View Source SetBlueSideColorSeparationBar() Declaration public static void SetBlueSideColorSeparationBar() | Improve this Doc View Source SetBlueSideColorTextSummoner() Declaration public static void SetBlueSideColorTextSummoner() | Improve this Doc View Source SetRedSideColorBorderChampion() Declaration public static void SetRedSideColorBorderChampion() | Improve this Doc View Source SetRedSideColorSeparationBar() Declaration public static void SetRedSideColorSeparationBar() | Improve this Doc View Source SetRedSideColorTextSummoner() Declaration public static void SetRedSideColorTextSummoner() | Improve this Doc View Source TempsBlueSideColorBorderChampion() Declaration public static string TempsBlueSideColorBorderChampion() Returns Type Description System.String | Improve this Doc View Source TempsRedSideColorBorderChampion() Declaration public static string TempsRedSideColorBorderChampion() Returns Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html", + "title": "Class RunesPage.Perks | OSL", + "keywords": "Class RunesPage.Perks Inheritance System.Object RunesPage.Perks Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class Perks Properties | Improve this Doc View Source perkIds Declaration public List perkIds { get; set; } Property Value Type Description List < System.Int32 > | Improve this Doc View Source perkStyle Declaration public int perkStyle { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source perkSubStyle Declaration public int perkSubStyle { get; set; } Property Value Type Description System.Int32" + }, + "apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html", + "title": "Class RunesSuppPage.FormatingData | OSL", + "keywords": "Class RunesSuppPage.FormatingData Inheritance System.Object RunesSuppPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePicture Declaration public string LanePicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html", + "title": "Class RunesSuppPage | OSL", + "keywords": "Class RunesSuppPage Inheritance System.Object RunesSuppPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesSuppPage Fields | Improve this Doc View Source formatingData Declaration public static RunesSuppPage.FormatingData formatingData Field Value Type Description RunesSuppPage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, + "apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html", + "title": "Class RunesTopPage.FormatingData | OSL", + "keywords": "Class RunesTopPage.FormatingData Inheritance System.Object RunesTopPage.FormatingData Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class FormatingData Properties | Improve this Doc View Source BackgroudGradient Declaration public string BackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source BakgroundPicture Declaration public string BakgroundPicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorBorderChampion Declaration public string BlueSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorSeparationBar Declaration public string BlueSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source BlueSideColorTextSummoner Declaration public string BlueSideColorTextSummoner { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultPatch Declaration public string DefaultPatch { get; set; } Property Value Type Description System.String | Improve this Doc View Source DefaultRegion Declaration public string DefaultRegion { get; set; } Property Value Type Description System.String | Improve this Doc View Source LanePicture Declaration public string LanePicture { get; set; } Property Value Type Description System.String | Improve this Doc View Source OverlayColorBackgroudGradient Declaration public string OverlayColorBackgroudGradient { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorBorderChampion Declaration public string RedSideColorBorderChampion { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorSeparationBar Declaration public string RedSideColorSeparationBar { get; set; } Property Value Type Description System.String | Improve this Doc View Source RedSideColorTextSummoner Declaration public string RedSideColorTextSummoner { get; set; } Property Value Type Description System.String" + }, + "apiserver/OSL_Server.Pages.Runes.RunesTopPage.html": { + "href": "apiserver/OSL_Server.Pages.Runes.RunesTopPage.html", + "title": "Class RunesTopPage | OSL", + "keywords": "Class RunesTopPage Inheritance System.Object RunesTopPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.Runes Assembly : OSL-Server.dll Syntax public class RunesTopPage Fields | Improve this Doc View Source formatingData Declaration public static RunesTopPage.FormatingData formatingData Field Value Type Description RunesTopPage.FormatingData Methods | Improve this Doc View Source GetChampionPicturePath(Int32) Return champion picture path Declaration public static string GetChampionPicturePath(int champId) Parameters Type Name Description System.Int32 champId Returns Type Description System.String | Improve this Doc View Source GetPerksIconPath(Int32) Return path of perks icon Declaration public static string GetPerksIconPath(int perksId) Parameters Type Name Description System.Int32 perksId Returns Type Description System.String | Improve this Doc View Source ResetColor() Load default datat champ select Declaration public static void ResetColor()" + }, "apiserver/OSL_Server.Pages.WaitingGamePage.html": { "href": "apiserver/OSL_Server.Pages.WaitingGamePage.html", "title": "Class WaitingGamePage | OSL", "keywords": "Class WaitingGamePage Inheritance System.Object WaitingGamePage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class WaitingGamePage" }, - "apiserver/OSL_Server.Pages.WaitingGameStartPage.html": { - "href": "apiserver/OSL_Server.Pages.WaitingGameStartPage.html", - "title": "Class WaitingGameStartPage | OSL", - "keywords": "Class WaitingGameStartPage Inheritance System.Object WaitingGameStartPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages Assembly : OSL-Server.dll Syntax public class WaitingGameStartPage" - }, - "apiserver/OSL_Server.PagesManager.html": { - "href": "apiserver/OSL_Server.PagesManager.html", - "title": "Namespace OSL_Server.PagesManager | OSL", - "keywords": "Namespace OSL_Server.PagesManager Classes Pages" + "apiserver/OSL_Server.Pages.WaitingGameStart.html": { + "href": "apiserver/OSL_Server.Pages.WaitingGameStart.html", + "title": "Namespace OSL_Server.Pages.WaitingGameStart | OSL", + "keywords": "Namespace OSL_Server.Pages.WaitingGameStart Classes WaitingGameStartPage" }, - "apiserver/OSL_Server.PagesManager.Pages.html": { - "href": "apiserver/OSL_Server.PagesManager.Pages.html", - "title": "Class Pages | OSL", - "keywords": "Class Pages Inheritance System.Object Pages Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.PagesManager Assembly : OSL-Server.dll Syntax public class Pages Methods | Improve this Doc View Source Create() Declaration public static void Create() | Improve this Doc View Source Delete() Declaration public static void Delete() | Improve this Doc View Source Update() Declaration public static void Update()" + "apiserver/OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage.html": { + "href": "apiserver/OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage.html", + "title": "Class WaitingGameStartPage | OSL", + "keywords": "Class WaitingGameStartPage Inheritance System.Object WaitingGameStartPage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : OSL_Server.Pages.WaitingGameStart Assembly : OSL-Server.dll Syntax public class WaitingGameStartPage" }, "clientdoc/intro.html": { "href": "clientdoc/intro.html", "title": "Client Documentation | OSL", - "keywords": "Client Documentation Caution Documentation in progress Download last release : First Release v0.3.0-alpha Not forget run OSL-Server.exe , before run OSL-Client.exe Configuration/configHost.json : Configuration of Live Events API port Configuration/configRiot.json : Name of windows process used by League of Legends Configuration/configServerSocketOSLServer.json : IP and Port of server Default port : 45678 IP : is the IP of computer where you run OSL-Server.exe You need just run OSL-Client.exe , nothing more, make ctrl+c for close him. Enable data collection Game Client API : Game Client API For recive data from a game add to C:/Riot Games/League of Legends/Config/game.cfg [General] EnableReplayApi=1 add to C:/Riot Games/League of Legends/Config/game.cfg for see a more graphic timer for dragon and baron [Spectator] eSportsNeutralTimers=1 Live Events API : Live Events API For recive data from a game add to C:/Riot Games/League of Legends/Config/game.cfg [LiveEvents] Enable=1 Port=34243 Next in C:/Riot Games/League of Legends/Config/ create file LiveEvents.ini and copy on it OnKill OnKillDragon_Spectator OnNeutralMinionKill OnMinionKill OnSummonRiftHerald OnKillWorm_Spectator OnTurretDie OnMinionKill OnChampionKill Spectator Visuel ctrl + maj + w for change max zoom of map x for total gold Features Chek if riot app are launch , close , crash Send information to the server in : Champ Select (champ select of the match is in progress) Waiting Game Start (information while waiting for the game to start) In Game (spectator game is in progress) End Game (game is over)" + "keywords": "Client Documentation Caution Documentation in progress Download last release : Release v1.0.0 Not forget run OSL-Server.exe , before run OSL-Client.exe Configuration/configHost.json : Configuration of Live Events API port Configuration/configRiot.json : Name of windows process used by League of Legends Configuration/configServerSocketOSLServer.json : IP and Port of server Default port : 45678 IP : is the IP of computer where you run OSL-Server.exe You need just run OSL-Client.exe , nothing more, make ctrl+c for close him. Enable data collection Game Client API : Game Client API For recive data from a game add to C:/Riot Games/League of Legends/Config/game.cfg [General] EnableReplayApi=1 add to C:/Riot Games/League of Legends/Config/game.cfg for see a more graphic timer for dragon and baron [Spectator] eSportsNeutralTimers=1 Live Events API : Live Events API For recive data from a game add to C:/Riot Games/League of Legends/Config/game.cfg [LiveEvents] Enable=1 Port=34243 Next in C:/Riot Games/League of Legends/Config/ create file LiveEvents.ini and copy on it OnKill OnKillDragon_Spectator OnNeutralMinionKill OnMinionKill OnSummonRiftHerald OnKillWorm_Spectator OnTurretDie OnMinionKill OnChampionKill Spectator Visuel ctrl + maj + w for change max zoom of map x for total gold Features Chek if riot app are launch , close , crash Send information to the server in : Champ Select (champ select of the match is in progress) Waiting Game Start (information while waiting for the game to start) In Game (spectator game is in progress) End Game (game is over)" }, "index.html": { "href": "index.html", "title": "OSL : Overlay Spectator Live | OSL", - "keywords": "OSL : Overlay Spectator Live Here you'll find the OSL-Client and OSL-Server for the Overlay Spectator Live software suit. This project permite to have an overlay for display informattion in Waiting a Game , Champ Select , Waiting Game Start , In Game and End Game in streamings. Applications architecture For more information, please refer to these different documentations. Client Note How to use and configure the application locally to sends information to the Server How to set up and use riot viewer mode Server Note How to use the server application and retrieve information and overlay from a game. Developer Client Note What information it sends to the Server in what data format. Code explanation. Developer Server Note What information are recover and in what data format. Code explanation. Warning Project in progress Tip If you have any suggestions don't hesitate Caution The license of this code is not given yet, it is coming soon Warning Legal disclaimer OSL isn't endorsed by Riot Games and doesn't reflect the views or opinions of Riot Games or anyone officially involved in producing or managing Riot Games properties. Riot Games, and all associated properties are trademarks or registered trademarks of Riot Games, Inc. OSL was created under Riot Games' \"Legal Jibber Jabber\" policy using assets owned by Riot Games. Riot Games does not endorse or sponsor this project." + "keywords": "OSL : Overlay Spectator Live This project allows you to display an overlay with additional information for your League of Legends games Applications use various APIs to collect information about the game, champions, players, ..... Features Champ Select : 4 view Champ ban/select Summoners names Team name Number of victory/lose teams Timer ban/select/waiting Summoners Spell In Game : With riot overlay : 3 view Team/Dragon/Baron frame Team name Number of victory/lose teams Frame for video/logo/player picture ... End Game : 3 view Team name Team score Team win loose Damage to champion Bans KDA/Gold/Tower/Dragon/Elder Dragon/Herald/Baron Gold Diff Runes : 7 view Top Jungle Mid Adc Support Adc and support All Applications architecture For more information, please refer to these different documentations. Client Note How to use and configure the application locally to sends information to the Server How to set up and use riot viewer mode Server Note How to use the server application and retrieve information and overlay from a game. Developer Client Note What information it sends to the Server in what data format. Code explanation. Developer Server Note What information are recover and in what data format. Code explanation. Warning Project in progress Tip If you have any suggestions don't hesitate Caution The license of this code is not given yet, it is coming soon Warning Legal disclaimer OSL isn't endorsed by Riot Games and doesn't reflect the views or opinions of Riot Games or anyone officially involved in producing or managing Riot Games properties. Riot Games, and all associated properties are trademarks or registered trademarks of Riot Games, Inc. OSL was created under Riot Games' \"Legal Jibber Jabber\" policy using assets owned by Riot Games. Riot Games does not endorse or sponsor this project." }, "serverdoc/intro.html": { "href": "serverdoc/intro.html", "title": "Server Documentation | OSL", - "keywords": "Server Documentation Caution Documentation in progress These features are under development, they are not available Download last release : Release v0.3.0-alpha Not forget run OSL-Server.exe , before run OSL-Client.exe Open in a browser https://< ip >:4242 (change ip by your computer ip) Home : Link to documentation CDragon : Data download from CDragon (When you run it he download data) Config : Change port of OSL-Client, load or save champ select view config Champ Select : Customization of overlay. When you run a game, information to OSL-Client is send to OSL-Server. 3 Overlay are usable Configuration/configCDragon.json : Configuration CDragon for download Configuration/configServerSocket.json : Port of server Default port : 45678 wwwroot/ : wwwroot/_content : Blazor operation wwwroot/assets : wwwroot/assets/xx.x : CDragon pictures downloads wwwroot/assets/champselect : picture used for champion selection wwwroot/assets/ingame : picture used for in game wwwroot/assets/lolsprites : lol sprites wwwroot/css : css of web application wwwroot/favicon.ico : icon of web application wwwroot/OSL-Server.styles.css : css of web application This document explains how to use and connect to the server to receive the different overlay. The information you can receive from the game is listed, and separated into 5 categories. It is possible to disable or enable all options. Waiting a Game : This overlay displays information about the players in the next game. Champ Select : This overlay display information when champ select of the match is in progress. Waiting Game Start : This overlay displays information while waiting for the game to start because of the delay between the game and the broadcast for the viewers. In Game : This overlay display information when spectator game is in progress. End Game : This overlay display information when the game is over. OBS configuration : Add to your différents scènes the différents URL (change ip by your local ip) Champ Select : http://ip:4141/champselect/view1 http://ip:4141/champselect/view2 http://ip:4141/champselect/view3 http://ip:4141/champselect/view4 In Game : http://ip:4141/ingame/view1 http://ip:4141/ingame/view2 http://ip:4141/ingame/view3 Information display on overlay information : Display information if the default riot overlay is disabled information : Only if reading from memory is enabled. If memory reading is enabled, the default riot overlay can be disabled. information : Data not found at this time : Feature implemented : Feature not implemented, but in progress Information display with overlay Waiting a Game Number of lose and vircory in ranked solo/duo and flex Information display with overlay in Champ Select Link to LoL client : Champion Ban Champion Pick Summoners Name Summoners Spell (view 1) Skins Timer (ban/select/waiting) Personal information added : Name Toornament Win/Lose Team Logo Team Name Team Name Summoners Name Coach Stats Champ Ban Stats Champ Pick Stats Champ Winrate View 1 : View 2 : View 3 : View 4 :


      Information display with overlay Waiting Game Start


      Stats of players in the champ pick
      Stats Summoners on champ

      Information display with overlay In Game With riot overlay : Team frame Dragon frame Baron frame Name teams Number of teams victory/lose Frame for video/logo/... View 1 : View 2 : View 3 : Without riot overlay : Inter of game : LevelUp Itemps buy Dragon (Kill, next , soul) Elder Dragon (Timer, buff, all champ kill, gold diff , damege diff , next helder drake) Baron (buff, timer, all champ dead, gold diff , damage diff , next nash) Herald (buff, timer, launch or not, take or not) Kill Tower Timer Gold Gold win during fight XP + Level Damage dead Damage dead during fight Exter of game : Ban/Pick Runes Logo team Team name Lose/Win Video Information display with overlay in End Game Timer game Teams name Logo teams Champ dega KDA Total golds Tower Drake Elder dragon Herald Baron Ban Gold difference over time " + "keywords": "Server Documentation Caution Documentation in progress These features are under development, they are not available Download last release : Release v1.0.0 Not forget run OSL-Server.exe , before run OSL-Client.exe Open in a browser https://< ip >:4242 (change ip by your computer ip) Home : Link to documentation CDragon : Data download from CDragon (When you run it he download data) Config : Change port of OSL-Client, load or save champ select view config Champ Select : Customization of overlay. When you run a game, information to OSL-Client is send to OSL-Server. 3 Overlay are usable Configuration/configCDragon.json : Configuration CDragon for download Configuration/configServerSocket.json : Port of server Default port : 45678 wwwroot/ : wwwroot/_content : Blazor operation wwwroot/assets : wwwroot/assets/xx.x : CDragon pictures downloads wwwroot/assets/champselect : picture used for champion selection wwwroot/assets/ingame : picture used for in game wwwroot/assets/lolsprites : lol sprites wwwroot/css : css of web application wwwroot/favicon.ico : icon of web application wwwroot/OSL-Server.styles.css : css of web application This document explains how to use and connect to the server to receive the different overlay. The information you can receive from the game is listed, and separated into 5 categories. It is possible to disable or enable all options. Waiting a Game : This overlay displays information about the players in the next game. Champ Select : This overlay display information when champ select of the match is in progress. Waiting Game Start : This overlay displays information while waiting for the game to start because of the delay between the game and the broadcast for the viewers. In Game : This overlay display information when spectator game is in progress. End Game : This overlay display information when the game is over. OBS configuration : Add to your différents scènes the différents URL (change ip by your local ip) Champ Select : http://ip:4141/champselect/view1 http://ip:4141/champselect/view2 http://ip:4141/champselect/view3 http://ip:4141/champselect/view4 In Game : http://ip:4141/ingame/view1 http://ip:4141/ingame/view2 http://ip:4141/ingame/view3 End Game : http://ip:4141/endgame/view1 http://ip:4141/endgame/view2 http://ip:4141/endgame/view3 Runes : http://ip:4141/runes/top http://ip:4141/runes/mid http://ip:4141/runes/jungle http://ip:4141/runes/adc http://ip:4141/runes/supp http://ip:4141/runes/adcsupp http://ip:4141/runes/all Information display on overlay information : Display information if the default riot overlay is disabled information : Only if reading from memory is enabled. If memory reading is enabled, the default riot overlay can be disabled. information : Data not found at this time : Feature implemented : Feature not implemented, but in progress Information display with overlay Waiting a Game Number of lose and vircory in ranked solo/duo and flex Information display with overlay in Champ Select Link to LoL client : Champion Ban Champion Pick Summoners Name Summoners Spell (view 1) Skins Timer (ban/select/waiting) Personal information added : Name Toornament Win/Lose Team Logo Team Name Team Name Summoners Name Coach Stats Champ Ban Stats Champ Pick Stats Champ Winrate View 1 : View 2 : View 3 : View 4 :


      Information display with overlay Waiting Game Start


      Stats of players in the champ pick
      Stats Summoners on champ

      Information display with overlay In Game With riot overlay : Team frame Dragon frame Baron frame Name teams Number of teams victory/lose Frame for video/logo/... View 1 : View 2 : View 3 : Without riot overlay : Inter of game : LevelUp Itemps buy Dragon (Kill, next , soul) Elder Dragon (Timer, buff, all champ kill, gold diff , damege diff , next helder drake) Baron (buff, timer, all champ dead, gold diff , damage diff , next nash) Herald (buff, timer, launch or not, take or not) Kill Tower Timer Gold Gold win during fight XP + Level Damage dead Damage dead during fight Exter of game : Ban/Pick Runes Logo team Team name Lose/Win Video Information display with overlay in End Game Timer game Teams name Logo teams Champ dega KDA Total golds Tower Drake Elder dragon Herald Baron Ban Gold difference over time View 1 : View 2 : View 3 : Information display with overlay Runes Summoner name Runes Top rune Jungle rune Mid rune Adc rune Support rune Adc and supp rune All lane rune " } } \ No newline at end of file diff --git a/docs/picture/EndGameView1.png b/docs/picture/EndGameView1.png new file mode 100644 index 0000000..4f2504a Binary files /dev/null and b/docs/picture/EndGameView1.png differ diff --git a/docs/picture/EndGameView2.png b/docs/picture/EndGameView2.png new file mode 100644 index 0000000..37323ea Binary files /dev/null and b/docs/picture/EndGameView2.png differ diff --git a/docs/picture/EndGameView3.png b/docs/picture/EndGameView3.png new file mode 100644 index 0000000..70f3b1c Binary files /dev/null and b/docs/picture/EndGameView3.png differ diff --git a/docs/serverdoc/intro.html b/docs/serverdoc/intro.html index 325d65b..af9dc72 100644 --- a/docs/serverdoc/intro.html +++ b/docs/serverdoc/intro.html @@ -99,7 +99,7 @@
      Caution

      These features are under development, they are not available


      -

      Download last release : Release v0.3.0-alpha

      +

      Download last release : Release v1.0.0

      Not forget run OSL-Server.exe, before run OSL-Client.exe

      Open in a browser https://< ip >:4242 (change ip by your computer ip)

      Home : Link to documentation

      @@ -163,6 +163,20 @@

      OBS configuration :

      http://ip:4141/ingame/view2 http://ip:4141/ingame/view3
      +

      End Game :

      +
      http://ip:4141/endgame/view1
      +http://ip:4141/endgame/view2
      +http://ip:4141/endgame/view3
      +
      +

      Runes :

      +
      http://ip:4141/runes/top
      +http://ip:4141/runes/mid
      +http://ip:4141/runes/jungle
      +http://ip:4141/runes/adc
      +http://ip:4141/runes/supp
      +http://ip:4141/runes/adcsupp
      +http://ip:4141/runes/all
      +

      Information display with overlay in End Game

      -


      Timer game -
      Teams name +


      Timer game +
      Teams name
      Logo teams -
      Champ dega -
      KDA -
      Total golds -
      Tower -
      Drake -
      Elder dragon -
      Herald -
      Baron -
      Ban -
      Gold difference over time

      +
      Champ dega +
      KDA +
      Total golds +
      Tower +
      Drake +
      Elder dragon +
      Herald +
      Baron +
      Ban +
      Gold difference over time

      +

      View 1 :

      + +

      View 2 :

      + +

      View 3 :

      + +
      +

      Information display with overlay Runes

      +


      Summoner name +
      Runes +
      Top rune +
      Jungle rune +
      Mid rune +
      Adc rune +
      Support rune +
      Adc and supp rune +
      All lane rune

    diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index 26a16da..73ba735 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -19,6 +19,63 @@ references: commentId: T:OSL_Client.Communication.OSLServer.AsyncClient fullName: OSL_Client.Communication.OSLServer.AsyncClient nameWithType: AsyncClient +- uid: OSL_Client.Communication.OSLServer.AsyncClient.CloseClient + name: CloseClient() + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_CloseClient + commentId: M:OSL_Client.Communication.OSLServer.AsyncClient.CloseClient + fullName: OSL_Client.Communication.OSLServer.AsyncClient.CloseClient() + nameWithType: AsyncClient.CloseClient() +- uid: OSL_Client.Communication.OSLServer.AsyncClient.CloseClient* + name: CloseClient + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_CloseClient_ + commentId: Overload:OSL_Client.Communication.OSLServer.AsyncClient.CloseClient + isSpec: "True" + fullName: OSL_Client.Communication.OSLServer.AsyncClient.CloseClient + nameWithType: AsyncClient.CloseClient +- uid: OSL_Client.Communication.OSLServer.AsyncClient.oslServerSocket + name: oslServerSocket + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_oslServerSocket + commentId: F:OSL_Client.Communication.OSLServer.AsyncClient.oslServerSocket + fullName: OSL_Client.Communication.OSLServer.AsyncClient.oslServerSocket + nameWithType: AsyncClient.oslServerSocket +- uid: OSL_Client.Communication.OSLServer.AsyncClient.Receive + name: Receive() + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_Receive + commentId: M:OSL_Client.Communication.OSLServer.AsyncClient.Receive + fullName: OSL_Client.Communication.OSLServer.AsyncClient.Receive() + nameWithType: AsyncClient.Receive() +- uid: OSL_Client.Communication.OSLServer.AsyncClient.Receive(System.Net.Sockets.Socket) + name: Receive(Socket) + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_Receive_System_Net_Sockets_Socket_ + commentId: M:OSL_Client.Communication.OSLServer.AsyncClient.Receive(System.Net.Sockets.Socket) + fullName: OSL_Client.Communication.OSLServer.AsyncClient.Receive(System.Net.Sockets.Socket) + nameWithType: AsyncClient.Receive(Socket) +- uid: OSL_Client.Communication.OSLServer.AsyncClient.Receive* + name: Receive + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_Receive_ + commentId: Overload:OSL_Client.Communication.OSLServer.AsyncClient.Receive + isSpec: "True" + fullName: OSL_Client.Communication.OSLServer.AsyncClient.Receive + nameWithType: AsyncClient.Receive +- uid: OSL_Client.Communication.OSLServer.AsyncClient.Send(System.Net.Sockets.Socket,System.String) + name: Send(Socket, String) + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_Send_System_Net_Sockets_Socket_System_String_ + commentId: M:OSL_Client.Communication.OSLServer.AsyncClient.Send(System.Net.Sockets.Socket,System.String) + fullName: OSL_Client.Communication.OSLServer.AsyncClient.Send(System.Net.Sockets.Socket, System.String) + nameWithType: AsyncClient.Send(Socket, String) +- uid: OSL_Client.Communication.OSLServer.AsyncClient.Send(System.String) + name: Send(String) + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_Send_System_String_ + commentId: M:OSL_Client.Communication.OSLServer.AsyncClient.Send(System.String) + fullName: OSL_Client.Communication.OSLServer.AsyncClient.Send(System.String) + nameWithType: AsyncClient.Send(String) +- uid: OSL_Client.Communication.OSLServer.AsyncClient.Send* + name: Send + href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_Send_ + commentId: Overload:OSL_Client.Communication.OSLServer.AsyncClient.Send + isSpec: "True" + fullName: OSL_Client.Communication.OSLServer.AsyncClient.Send + nameWithType: AsyncClient.Send - uid: OSL_Client.Communication.OSLServer.AsyncClient.StartClient(System.String) name: StartClient(String) href: apiclient/OSL_Client.Communication.OSLServer.AsyncClient.html#OSL_Client_Communication_OSLServer_AsyncClient_StartClient_System_String_ @@ -663,316 +720,451 @@ references: commentId: N:OSL_Client.RiotApp.MemoryProcessing fullName: OSL_Client.RiotApp.MemoryProcessing nameWithType: OSL_Client.RiotApp.MemoryProcessing -- uid: OSL_Client.RiotApp.MemoryProcessing.AppStateController - name: AppStateController - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.AppStateController - fullName: OSL_Client.RiotApp.MemoryProcessing.AppStateController - nameWithType: AppStateController -- uid: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsetConfig - name: LoadOffsetConfig() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html#OSL_Client_RiotApp_MemoryProcessing_AppStateController_LoadOffsetConfig - commentId: M:OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsetConfig - fullName: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsetConfig() - nameWithType: AppStateController.LoadOffsetConfig() -- uid: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsetConfig* - name: LoadOffsetConfig - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html#OSL_Client_RiotApp_MemoryProcessing_AppStateController_LoadOffsetConfig_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsetConfig - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsetConfig - nameWithType: AppStateController.LoadOffsetConfig -- uid: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsets - name: LoadOffsets() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html#OSL_Client_RiotApp_MemoryProcessing_AppStateController_LoadOffsets - commentId: M:OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsets - fullName: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsets() - nameWithType: AppStateController.LoadOffsets() -- uid: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsets* - name: LoadOffsets - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.AppStateController.html#OSL_Client_RiotApp_MemoryProcessing_AppStateController_LoadOffsets_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsets - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.AppStateController.LoadOffsets - nameWithType: AppStateController.LoadOffsets -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO + name: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.html + commentId: N:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO + nameWithType: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion + name: CDragonChampion + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion + nameWithType: CDragonChampion +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Alias + name: Alias + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_Alias + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Alias + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Alias + nameWithType: CDragonChampion.Alias +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Alias* + name: Alias + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_Alias_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Alias + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Alias + nameWithType: CDragonChampion.Alias +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.All + name: All + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_All + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.All + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.All + nameWithType: CDragonChampion.All +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.All* + name: All + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_All_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.All + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.All + nameWithType: CDragonChampion.All +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.ID + name: ID + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_ID + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.ID + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.ID + nameWithType: CDragonChampion.ID +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.ID* + name: ID + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_ID_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.ID + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.ID + nameWithType: CDragonChampion.ID +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.LoadingImg + name: LoadingImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_LoadingImg + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.LoadingImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.LoadingImg + nameWithType: CDragonChampion.LoadingImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.LoadingImg* + name: LoadingImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_LoadingImg_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.LoadingImg + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.LoadingImg + nameWithType: CDragonChampion.LoadingImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Name + name: Name + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_Name + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Name + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Name + nameWithType: CDragonChampion.Name +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Name* + name: Name + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_Name_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Name + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.Name + nameWithType: CDragonChampion.Name +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashCenteredImg + name: SplashCenteredImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_SplashCenteredImg + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashCenteredImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashCenteredImg + nameWithType: CDragonChampion.SplashCenteredImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashCenteredImg* + name: SplashCenteredImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_SplashCenteredImg_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashCenteredImg + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashCenteredImg + nameWithType: CDragonChampion.SplashCenteredImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashImg + name: SplashImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_SplashImg + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashImg + nameWithType: CDragonChampion.SplashImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashImg* + name: SplashImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_SplashImg_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashImg + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SplashImg + nameWithType: CDragonChampion.SplashImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SquareImg + name: SquareImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_SquareImg + commentId: P:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SquareImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SquareImg + nameWithType: CDragonChampion.SquareImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SquareImg* + name: SquareImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_CDragonChampion_SquareImg_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SquareImg + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.CDragonChampion.SquareImg + nameWithType: CDragonChampion.SquareImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion + name: Champion + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion + nameWithType: Champion +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.id + name: id + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_id + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.id + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.id + nameWithType: Champion.id +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.key + name: key + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_key + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.key + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.key + nameWithType: Champion.key +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.loadingImg + name: loadingImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_loadingImg + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.loadingImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.loadingImg + nameWithType: Champion.loadingImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.name + name: name + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_name + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.name + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.name + nameWithType: Champion.name +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.splashCenteredImg + name: splashCenteredImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_splashCenteredImg + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.splashCenteredImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.splashCenteredImg + nameWithType: Champion.splashCenteredImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.splashImg + name: splashImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_splashImg + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.splashImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.splashImg + nameWithType: Champion.splashImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.squareImg + name: squareImg + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_DTO_Champion_squareImg + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.squareImg + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.DTO.Champion.squareImg + nameWithType: Champion.squareImg +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT + name: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.html + commentId: N:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT + nameWithType: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel + name: ChampionLevel + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel + nameWithType: ChampionLevel +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.#ctor(System.Int32,System.Single) + name: ChampionLevel(Int32, Single) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel__ctor_System_Int32_System_Single_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.#ctor(System.Int32,System.Single) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.ChampionLevel(System.Int32, System.Single) + nameWithType: ChampionLevel.ChampionLevel(Int32, Single) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.#ctor* + name: ChampionLevel + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel__ctor_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.#ctor + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.ChampionLevel + nameWithType: ChampionLevel.ChampionLevel +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.CompareTo(System.Object) + name: CompareTo(Object) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_CompareTo_System_Object_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.CompareTo(System.Object) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.CompareTo(System.Object) + nameWithType: ChampionLevel.CompareTo(Object) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.CompareTo* + name: CompareTo + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_CompareTo_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.CompareTo + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.CompareTo + nameWithType: ChampionLevel.CompareTo +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.exp + name: exp + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_exp + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.exp + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.exp + nameWithType: ChampionLevel.exp +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.EXPToLevel(System.Single) + name: EXPToLevel(Single) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_EXPToLevel_System_Single_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.EXPToLevel(System.Single) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.EXPToLevel(System.Single) + nameWithType: ChampionLevel.EXPToLevel(Single) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.EXPToLevel* + name: EXPToLevel + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_EXPToLevel_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.EXPToLevel + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.EXPToLevel + nameWithType: ChampionLevel.EXPToLevel +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.level + name: level + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_level + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.level + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.level + nameWithType: ChampionLevel.level +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.Levels + name: Levels + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_Common_Data_RIOT_ChampionLevel_Levels + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.Levels + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Data.RIOT.ChampionLevel.Levels + nameWithType: ChampionLevel.Levels +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils + name: OSL_Client.RiotApp.MemoryProcessing.Common.Utils + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.html + commentId: N:OSL_Client.RiotApp.MemoryProcessing.Common.Utils + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils + nameWithType: OSL_Client.RiotApp.MemoryProcessing.Common.Utils +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils name: ByteUtils - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.ByteUtils - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils nameWithType: ByteUtils -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii(System.Byte[]) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii(System.Byte[]) name: DecodeAscii(Byte[]) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_DecodeAscii_System_Byte___ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii(System.Byte[]) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_DecodeAscii_System_Byte___ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii(System.Byte[]) name.vb: DecodeAscii(Byte()) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii(System.Byte[]) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii(System.Byte()) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii(System.Byte[]) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii(System.Byte()) nameWithType: ByteUtils.DecodeAscii(Byte[]) nameWithType.vb: ByteUtils.DecodeAscii(Byte()) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii* name: DecodeAscii - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_DecodeAscii_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_DecodeAscii_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.DecodeAscii + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.DecodeAscii nameWithType: ByteUtils.DecodeAscii -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray(System.Byte[],System.Int32,System.Int32) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray(System.Byte[],System.Int32,System.Int32) name: GetSubArray(Byte[], Int32, Int32) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_GetSubArray_System_Byte___System_Int32_System_Int32_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray(System.Byte[],System.Int32,System.Int32) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_GetSubArray_System_Byte___System_Int32_System_Int32_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray(System.Byte[],System.Int32,System.Int32) name.vb: GetSubArray(Byte(), Int32, Int32) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray(System.Byte[], System.Int32, System.Int32) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray(System.Byte(), System.Int32, System.Int32) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray(System.Byte[], System.Int32, System.Int32) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray(System.Byte(), System.Int32, System.Int32) nameWithType: ByteUtils.GetSubArray(Byte[], Int32, Int32) nameWithType.vb: ByteUtils.GetSubArray(Byte(), Int32, Int32) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray* name: GetSubArray - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_GetSubArray_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_GetSubArray_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.GetSubArray + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.GetSubArray nameWithType: ByteUtils.GetSubArray -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII(System.Byte[]) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII(System.Byte[]) name: IsASCII(Byte[]) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_IsASCII_System_Byte___ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII(System.Byte[]) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_IsASCII_System_Byte___ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII(System.Byte[]) name.vb: IsASCII(Byte()) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII(System.Byte[]) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII(System.Byte()) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII(System.Byte[]) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII(System.Byte()) nameWithType: ByteUtils.IsASCII(Byte[]) nameWithType.vb: ByteUtils.IsASCII(Byte()) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII* name: IsASCII - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_IsASCII_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_IsASCII_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.IsASCII + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.IsASCII nameWithType: ByteUtils.IsASCII -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat(System.Byte[],System.Int32) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat(System.Byte[],System.Int32) name: ToFloat(Byte[], Int32) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToFloat_System_Byte___System_Int32_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat(System.Byte[],System.Int32) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToFloat_System_Byte___System_Int32_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat(System.Byte[],System.Int32) name.vb: ToFloat(Byte(), Int32) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat(System.Byte[], System.Int32) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat(System.Byte(), System.Int32) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat(System.Byte[], System.Int32) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat(System.Byte(), System.Int32) nameWithType: ByteUtils.ToFloat(Byte[], Int32) nameWithType.vb: ByteUtils.ToFloat(Byte(), Int32) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat* name: ToFloat - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToFloat_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToFloat_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToFloat + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToFloat nameWithType: ByteUtils.ToFloat -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt(System.Byte[],System.Int32) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt(System.Byte[],System.Int32) name: ToInt(Byte[], Int32) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToInt_System_Byte___System_Int32_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt(System.Byte[],System.Int32) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToInt_System_Byte___System_Int32_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt(System.Byte[],System.Int32) name.vb: ToInt(Byte(), Int32) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt(System.Byte[], System.Int32) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt(System.Byte(), System.Int32) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt(System.Byte[], System.Int32) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt(System.Byte(), System.Int32) nameWithType: ByteUtils.ToInt(Byte[], Int32) nameWithType.vb: ByteUtils.ToInt(Byte(), Int32) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt* name: ToInt - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToInt_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToInt_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToInt + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToInt nameWithType: ByteUtils.ToInt -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort(System.Byte[],System.Int32) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort(System.Byte[],System.Int32) name: ToShort(Byte[], Int32) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToShort_System_Byte___System_Int32_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort(System.Byte[],System.Int32) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToShort_System_Byte___System_Int32_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort(System.Byte[],System.Int32) name.vb: ToShort(Byte(), Int32) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort(System.Byte[], System.Int32) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort(System.Byte(), System.Int32) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort(System.Byte[], System.Int32) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort(System.Byte(), System.Int32) nameWithType: ByteUtils.ToShort(Byte[], Int32) nameWithType.vb: ByteUtils.ToShort(Byte(), Int32) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort* name: ToShort - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToShort_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToShort_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToShort + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToShort nameWithType: ByteUtils.ToShort -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt(System.Byte[],System.Int32) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt(System.Byte[],System.Int32) name: ToUInt(Byte[], Int32) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToUInt_System_Byte___System_Int32_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt(System.Byte[],System.Int32) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToUInt_System_Byte___System_Int32_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt(System.Byte[],System.Int32) name.vb: ToUInt(Byte(), Int32) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt(System.Byte[], System.Int32) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt(System.Byte(), System.Int32) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt(System.Byte[], System.Int32) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt(System.Byte(), System.Int32) nameWithType: ByteUtils.ToUInt(Byte[], Int32) nameWithType.vb: ByteUtils.ToUInt(Byte(), Int32) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt* name: ToUInt - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_ToUInt_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_ToUInt_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.ToUInt + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.ToUInt nameWithType: ByteUtils.ToUInt -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte[],System.Byte[]) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte[],System.Byte[]) name: Write(Byte[], Byte[]) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_Write_System_Byte___System_Byte___ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte[],System.Byte[]) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_Write_System_Byte___System_Byte___ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte[],System.Byte[]) name.vb: Write(Byte(), Byte()) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte[], System.Byte[]) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte(), System.Byte()) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte[], System.Byte[]) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte(), System.Byte()) nameWithType: ByteUtils.Write(Byte[], Byte[]) nameWithType.vb: ByteUtils.Write(Byte(), Byte()) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte[],System.Int32,System.Byte[]) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte[],System.Int32,System.Byte[]) name: Write(Byte[], Int32, Byte[]) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_Write_System_Byte___System_Int32_System_Byte___ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte[],System.Int32,System.Byte[]) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_Write_System_Byte___System_Int32_System_Byte___ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte[],System.Int32,System.Byte[]) name.vb: Write(Byte(), Int32, Byte()) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte[], System.Int32, System.Byte[]) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Byte(), System.Int32, System.Byte()) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte[], System.Int32, System.Byte[]) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Byte(), System.Int32, System.Byte()) nameWithType: ByteUtils.Write(Byte[], Int32, Byte[]) nameWithType.vb: ByteUtils.Write(Byte(), Int32, Byte()) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char[],System.Byte[]) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char[],System.Byte[]) name: Write(Char[], Byte[]) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_Write_System_Char___System_Byte___ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char[],System.Byte[]) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_Write_System_Char___System_Byte___ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char[],System.Byte[]) name.vb: Write(Char(), Byte()) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char[], System.Byte[]) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char(), System.Byte()) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char[], System.Byte[]) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char(), System.Byte()) nameWithType: ByteUtils.Write(Char[], Byte[]) nameWithType.vb: ByteUtils.Write(Char(), Byte()) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char[],System.Int32,System.Byte[]) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char[],System.Int32,System.Byte[]) name: Write(Char[], Int32, Byte[]) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_Write_System_Char___System_Int32_System_Byte___ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char[],System.Int32,System.Byte[]) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_Write_System_Char___System_Int32_System_Byte___ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char[],System.Int32,System.Byte[]) name.vb: Write(Char(), Int32, Byte()) - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char[], System.Int32, System.Byte[]) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write(System.Char(), System.Int32, System.Byte()) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char[], System.Int32, System.Byte[]) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write(System.Char(), System.Int32, System.Byte()) nameWithType: ByteUtils.Write(Char[], Int32, Byte[]) nameWithType.vb: ByteUtils.Write(Char(), Int32, Byte()) -- uid: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write* +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write* name: Write - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_ByteUtils_Write_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_ByteUtils_Write_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ByteUtils.Write + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.ByteUtils.Write nameWithType: ByteUtils.Write -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion - name: Champion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.Champion - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion - nameWithType: Champion -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.Champions - name: Champions - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_Champions - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.Champions - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.Champions - nameWithType: Champion.Champions -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.id - name: id - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_id - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.id - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.id - nameWithType: Champion.id -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.key - name: key - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_key - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.key - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.key - nameWithType: Champion.key -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.loadingImg - name: loadingImg - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_loadingImg - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.loadingImg - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.loadingImg - nameWithType: Champion.loadingImg -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.name - name: name - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_name - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.name - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.name - nameWithType: Champion.name -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.splashCenteredImg - name: splashCenteredImg - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_splashCenteredImg - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.splashCenteredImg - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.splashCenteredImg - nameWithType: Champion.splashCenteredImg -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.splashImg - name: splashImg - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_splashImg - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.splashImg - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.splashImg - nameWithType: Champion.splashImg -- uid: OSL_Client.RiotApp.MemoryProcessing.Champion.squareImg - name: squareImg - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Champion.html#OSL_Client_RiotApp_MemoryProcessing_Champion_squareImg - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Champion.squareImg - fullName: OSL_Client.RiotApp.MemoryProcessing.Champion.squareImg - nameWithType: Champion.squareImg -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel - name: ChampionLevel - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel - nameWithType: ChampionLevel -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.#ctor(System.Int32,System.Single) - name: ChampionLevel(Int32, Single) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel__ctor_System_Int32_System_Single_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.#ctor(System.Int32,System.Single) - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.ChampionLevel(System.Int32, System.Single) - nameWithType: ChampionLevel.ChampionLevel(Int32, Single) -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.#ctor* - name: ChampionLevel - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel__ctor_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.#ctor +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter + name: HexStringJsonConverter + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter + nameWithType: HexStringJsonConverter +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.CanConvert(System.Type) + name: CanConvert(Type) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_HexStringJsonConverter_CanConvert_System_Type_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.CanConvert(System.Type) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.CanConvert(System.Type) + nameWithType: HexStringJsonConverter.CanConvert(Type) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.CanConvert* + name: CanConvert + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_HexStringJsonConverter_CanConvert_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.CanConvert isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.ChampionLevel - nameWithType: ChampionLevel.ChampionLevel -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.CompareTo(System.Object) - name: CompareTo(Object) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_CompareTo_System_Object_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.CompareTo(System.Object) - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.CompareTo(System.Object) - nameWithType: ChampionLevel.CompareTo(Object) -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.CompareTo* - name: CompareTo - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_CompareTo_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.CompareTo + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.CanConvert + nameWithType: HexStringJsonConverter.CanConvert +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) + name: ReadJson(JsonReader, Type, Object, JsonSerializer) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_HexStringJsonConverter_ReadJson_Newtonsoft_Json_JsonReader_System_Type_System_Object_Newtonsoft_Json_JsonSerializer_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, System.Object, Newtonsoft.Json.JsonSerializer) + nameWithType: HexStringJsonConverter.ReadJson(JsonReader, Type, Object, JsonSerializer) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.ReadJson* + name: ReadJson + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_HexStringJsonConverter_ReadJson_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.ReadJson isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.CompareTo - nameWithType: ChampionLevel.CompareTo -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.exp - name: exp - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_exp - commentId: F:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.exp - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.exp - nameWithType: ChampionLevel.exp -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.EXPToLevel(System.Single) - name: EXPToLevel(Single) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_EXPToLevel_System_Single_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.EXPToLevel(System.Single) - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.EXPToLevel(System.Single) - nameWithType: ChampionLevel.EXPToLevel(Single) -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.EXPToLevel* - name: EXPToLevel - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_EXPToLevel_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.EXPToLevel + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.ReadJson + nameWithType: HexStringJsonConverter.ReadJson +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) + name: WriteJson(JsonWriter, Object, JsonSerializer) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_HexStringJsonConverter_WriteJson_Newtonsoft_Json_JsonWriter_System_Object_Newtonsoft_Json_JsonSerializer_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, System.Object, Newtonsoft.Json.JsonSerializer) + nameWithType: HexStringJsonConverter.WriteJson(JsonWriter, Object, JsonSerializer) +- uid: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.WriteJson* + name: WriteJson + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_Common_Utils_HexStringJsonConverter_WriteJson_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.WriteJson isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.EXPToLevel - nameWithType: ChampionLevel.EXPToLevel -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.level - name: level - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_level - commentId: F:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.level - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.level - nameWithType: ChampionLevel.level -- uid: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.Levels - name: Levels - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.html#OSL_Client_RiotApp_MemoryProcessing_ChampionLevel_Levels - commentId: F:OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.Levels - fullName: OSL_Client.RiotApp.MemoryProcessing.ChampionLevel.Levels - nameWithType: ChampionLevel.Levels + fullName: OSL_Client.RiotApp.MemoryProcessing.Common.Utils.HexStringJsonConverter.WriteJson + nameWithType: HexStringJsonConverter.WriteJson - uid: OSL_Client.RiotApp.MemoryProcessing.FarsightController name: FarsightController href: apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.html @@ -1084,484 +1276,12 @@ references: commentId: F:OSL_Client.RiotApp.MemoryProcessing.FarsightController.Offsets.MapRoot fullName: OSL_Client.RiotApp.MemoryProcessing.FarsightController.Offsets.MapRoot nameWithType: FarsightController.Offsets.MapRoot -- uid: OSL_Client.RiotApp.MemoryProcessing.FarsightController.ReadObjects(OSL_Client.RiotApp.MemoryProcessing.Snapshot) - name: ReadObjects(Snapshot) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.html#OSL_Client_RiotApp_MemoryProcessing_FarsightController_ReadObjects_OSL_Client_RiotApp_MemoryProcessing_Snapshot_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.FarsightController.ReadObjects(OSL_Client.RiotApp.MemoryProcessing.Snapshot) - fullName: OSL_Client.RiotApp.MemoryProcessing.FarsightController.ReadObjects(OSL_Client.RiotApp.MemoryProcessing.Snapshot) - nameWithType: FarsightController.ReadObjects(Snapshot) -- uid: OSL_Client.RiotApp.MemoryProcessing.FarsightController.ReadObjects* - name: ReadObjects - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.html#OSL_Client_RiotApp_MemoryProcessing_FarsightController_ReadObjects_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.FarsightController.ReadObjects - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.FarsightController.ReadObjects - nameWithType: FarsightController.ReadObjects - uid: OSL_Client.RiotApp.MemoryProcessing.FarsightController.ShouldRun name: ShouldRun href: apiclient/OSL_Client.RiotApp.MemoryProcessing.FarsightController.html#OSL_Client_RiotApp_MemoryProcessing_FarsightController_ShouldRun commentId: F:OSL_Client.RiotApp.MemoryProcessing.FarsightController.ShouldRun fullName: OSL_Client.RiotApp.MemoryProcessing.FarsightController.ShouldRun nameWithType: FarsightController.ShouldRun -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject - name: GameObject - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.GameObject - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject - nameWithType: GameObject -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.buffDeepSize - name: buffDeepSize - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_buffDeepSize - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.buffDeepSize - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.buffDeepSize - nameWithType: GameObject.buffDeepSize -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.CurrentGold - name: CurrentGold - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_CurrentGold - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.CurrentGold - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.CurrentGold - nameWithType: GameObject.CurrentGold -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.EXP - name: EXP - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_EXP - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.EXP - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.EXP - nameWithType: GameObject.EXP -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.GoldTotal - name: GoldTotal - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_GoldTotal - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.GoldTotal - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.GoldTotal - nameWithType: GameObject.GoldTotal -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Health - name: Health - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Health - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Health - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Health - nameWithType: GameObject.Health -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.ID - name: ID - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_ID - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.ID - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.ID - nameWithType: GameObject.ID -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.IsChampion - name: IsChampion() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_IsChampion - commentId: M:OSL_Client.RiotApp.MemoryProcessing.GameObject.IsChampion - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.IsChampion() - nameWithType: GameObject.IsChampion() -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.IsChampion* - name: IsChampion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_IsChampion_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.GameObject.IsChampion - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.IsChampion - nameWithType: GameObject.IsChampion -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Level - name: Level - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Level - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Level - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Level - nameWithType: GameObject.Level -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory(System.Byte[],System.Int32,System.Boolean) - name: LoadChampFromMemory(Byte[], Int32, Boolean) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_LoadChampFromMemory_System_Byte___System_Int32_System_Boolean_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory(System.Byte[],System.Int32,System.Boolean) - name.vb: LoadChampFromMemory(Byte(), Int32, Boolean) - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory(System.Byte[], System.Int32, System.Boolean) - fullName.vb: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory(System.Byte(), System.Int32, System.Boolean) - nameWithType: GameObject.LoadChampFromMemory(Byte[], Int32, Boolean) - nameWithType.vb: GameObject.LoadChampFromMemory(Byte(), Int32, Boolean) -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory* - name: LoadChampFromMemory - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_LoadChampFromMemory_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadChampFromMemory - nameWithType: GameObject.LoadChampFromMemory -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadFromMemory(System.Int32,System.Boolean,System.Int32) - name: LoadFromMemory(Int32, Boolean, Int32) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_LoadFromMemory_System_Int32_System_Boolean_System_Int32_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadFromMemory(System.Int32,System.Boolean,System.Int32) - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadFromMemory(System.Int32, System.Boolean, System.Int32) - nameWithType: GameObject.LoadFromMemory(Int32, Boolean, Int32) -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadFromMemory* - name: LoadFromMemory - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_LoadFromMemory_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadFromMemory - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.LoadFromMemory - nameWithType: GameObject.LoadFromMemory -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Mana - name: Mana - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Mana - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Mana - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Mana - nameWithType: GameObject.Mana -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.MaxHealth - name: MaxHealth - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_MaxHealth - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.MaxHealth - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.MaxHealth - nameWithType: GameObject.MaxHealth -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.MaxMana - name: MaxMana - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_MaxMana - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.MaxMana - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.MaxMana - nameWithType: GameObject.MaxMana -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Name - name: Name - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Name - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Name - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Name - nameWithType: GameObject.Name -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.NetworkID - name: NetworkID - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_NetworkID - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.NetworkID - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.NetworkID - nameWithType: GameObject.NetworkID -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets - name: GameObject.Offsets - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets - nameWithType: GameObject.Offsets -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.CurrentGold - name: CurrentGold - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_CurrentGold - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.CurrentGold - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.CurrentGold - nameWithType: GameObject.Offsets.CurrentGold -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.EXP - name: EXP - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_EXP - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.EXP - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.EXP - nameWithType: GameObject.Offsets.EXP -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.GoldTotal - name: GoldTotal - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_GoldTotal - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.GoldTotal - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.GoldTotal - nameWithType: GameObject.Offsets.GoldTotal -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Health - name: Health - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_Health - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Health - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Health - nameWithType: GameObject.Offsets.Health -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ID - name: ID - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_ID - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ID - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ID - nameWithType: GameObject.Offsets.ID -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemInfo - name: ItemInfo - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_ItemInfo - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemInfo - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemInfo - nameWithType: GameObject.Offsets.ItemInfo -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemInfoId - name: ItemInfoId - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_ItemInfoId - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemInfoId - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemInfoId - nameWithType: GameObject.Offsets.ItemInfoId -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemList - name: ItemList - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_ItemList - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemList - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemList - nameWithType: GameObject.Offsets.ItemList -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemListItem - name: ItemListItem - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_ItemListItem - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemListItem - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.ItemListItem - nameWithType: GameObject.Offsets.ItemListItem -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Mana - name: Mana - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_Mana - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Mana - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Mana - nameWithType: GameObject.Offsets.Mana -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.MaxHealth - name: MaxHealth - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_MaxHealth - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.MaxHealth - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.MaxHealth - nameWithType: GameObject.Offsets.MaxHealth -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.MaxMana - name: MaxMana - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_MaxMana - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.MaxMana - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.MaxMana - nameWithType: GameObject.Offsets.MaxMana -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Name - name: Name - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_Name - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Name - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Name - nameWithType: GameObject.Offsets.Name -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.NetworkID - name: NetworkID - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_NetworkID - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.NetworkID - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.NetworkID - nameWithType: GameObject.Offsets.NetworkID -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Pos - name: Pos - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_Pos - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Pos - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Pos - nameWithType: GameObject.Offsets.Pos -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.SpellBook - name: SpellBook - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_SpellBook - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.SpellBook - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.SpellBook - nameWithType: GameObject.Offsets.SpellBook -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Team - name: Team - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Offsets_Team - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Team - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Offsets.Team - nameWithType: GameObject.Offsets.Team -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Position - name: Position - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Position - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Position - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Position - nameWithType: GameObject.Position -- uid: OSL_Client.RiotApp.MemoryProcessing.GameObject.Team - name: Team - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_GameObject_Team - commentId: F:OSL_Client.RiotApp.MemoryProcessing.GameObject.Team - fullName: OSL_Client.RiotApp.MemoryProcessing.GameObject.Team - nameWithType: GameObject.Team -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter - name: HexStringJsonConverter - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter - nameWithType: HexStringJsonConverter -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.CanConvert(System.Type) - name: CanConvert(Type) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_HexStringJsonConverter_CanConvert_System_Type_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.CanConvert(System.Type) - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.CanConvert(System.Type) - nameWithType: HexStringJsonConverter.CanConvert(Type) -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.CanConvert* - name: CanConvert - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_HexStringJsonConverter_CanConvert_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.CanConvert - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.CanConvert - nameWithType: HexStringJsonConverter.CanConvert -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) - name: ReadJson(JsonReader, Type, Object, JsonSerializer) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_HexStringJsonConverter_ReadJson_Newtonsoft_Json_JsonReader_System_Type_System_Object_Newtonsoft_Json_JsonSerializer_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer) - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.ReadJson(Newtonsoft.Json.JsonReader, System.Type, System.Object, Newtonsoft.Json.JsonSerializer) - nameWithType: HexStringJsonConverter.ReadJson(JsonReader, Type, Object, JsonSerializer) -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.ReadJson* - name: ReadJson - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_HexStringJsonConverter_ReadJson_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.ReadJson - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.ReadJson - nameWithType: HexStringJsonConverter.ReadJson -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) - name: WriteJson(JsonWriter, Object, JsonSerializer) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_HexStringJsonConverter_WriteJson_Newtonsoft_Json_JsonWriter_System_Object_Newtonsoft_Json_JsonSerializer_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer) - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.WriteJson(Newtonsoft.Json.JsonWriter, System.Object, Newtonsoft.Json.JsonSerializer) - nameWithType: HexStringJsonConverter.WriteJson(JsonWriter, Object, JsonSerializer) -- uid: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.WriteJson* - name: WriteJson - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.html#OSL_Client_RiotApp_MemoryProcessing_HexStringJsonConverter_WriteJson_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.WriteJson - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.HexStringJsonConverter.WriteJson - nameWithType: HexStringJsonConverter.WriteJson -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig - name: JSONConfig - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.JSONConfig - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig - nameWithType: JSONConfig -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig._fileVersion - name: _fileVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig__fileVersion - commentId: F:OSL_Client.RiotApp.MemoryProcessing.JSONConfig._fileVersion - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig._fileVersion - nameWithType: JSONConfig._fileVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.ConfigUpdate - name: ConfigUpdate - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_ConfigUpdate - commentId: F:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.ConfigUpdate - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.ConfigUpdate - nameWithType: JSONConfig.ConfigUpdate -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.CurrentVersion - name: CurrentVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_CurrentVersion - commentId: P:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.CurrentVersion - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.CurrentVersion - nameWithType: JSONConfig.CurrentVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.CurrentVersion* - name: CurrentVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_CurrentVersion_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.CurrentVersion - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.CurrentVersion - nameWithType: JSONConfig.CurrentVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.FileVersion - name: FileVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_FileVersion - commentId: P:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.FileVersion - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.FileVersion - nameWithType: JSONConfig.FileVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.FileVersion* - name: FileVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_FileVersion_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.FileVersion - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.FileVersion - nameWithType: JSONConfig.FileVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETCurrentVersion - name: GETCurrentVersion() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_GETCurrentVersion - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETCurrentVersion - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETCurrentVersion() - nameWithType: JSONConfig.GETCurrentVersion() -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETCurrentVersion* - name: GETCurrentVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_GETCurrentVersion_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETCurrentVersion - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETCurrentVersion - nameWithType: JSONConfig.GETCurrentVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETDefaultString - name: GETDefaultString() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_GETDefaultString - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETDefaultString - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETDefaultString() - nameWithType: JSONConfig.GETDefaultString() -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETDefaultString* - name: GETDefaultString - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_GETDefaultString_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETDefaultString - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETDefaultString - nameWithType: JSONConfig.GETDefaultString -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETJson - name: GETJson() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_GETJson - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETJson - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETJson() - nameWithType: JSONConfig.GETJson() -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETJson* - name: GETJson - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_GETJson_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETJson - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.GETJson - nameWithType: JSONConfig.GETJson -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Name - name: Name - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_Name - commentId: P:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Name - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Name - nameWithType: JSONConfig.Name -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Name* - name: Name - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_Name_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Name - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Name - nameWithType: JSONConfig.Name -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Reload - name: Reload() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_Reload - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Reload - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Reload() - nameWithType: JSONConfig.Reload() -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Reload* - name: Reload - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_Reload_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Reload - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.Reload - nameWithType: JSONConfig.Reload -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.RevertToDefault - name: RevertToDefault() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_RevertToDefault - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.RevertToDefault - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.RevertToDefault() - nameWithType: JSONConfig.RevertToDefault() -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.RevertToDefault* - name: RevertToDefault - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_RevertToDefault_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.RevertToDefault - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.RevertToDefault - nameWithType: JSONConfig.RevertToDefault -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.SerializeIndented(System.Object) - name: SerializeIndented(Object) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_SerializeIndented_System_Object_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.SerializeIndented(System.Object) - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.SerializeIndented(System.Object) - nameWithType: JSONConfig.SerializeIndented(Object) -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.SerializeIndented* - name: SerializeIndented - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_SerializeIndented_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.SerializeIndented - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.SerializeIndented - nameWithType: JSONConfig.SerializeIndented -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateConfigVersion(System.String,System.String) - name: UpdateConfigVersion(String, String) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_UpdateConfigVersion_System_String_System_String_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateConfigVersion(System.String,System.String) - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateConfigVersion(System.String, System.String) - nameWithType: JSONConfig.UpdateConfigVersion(String, String) -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateConfigVersion* - name: UpdateConfigVersion - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_UpdateConfigVersion_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateConfigVersion - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateConfigVersion - nameWithType: JSONConfig.UpdateConfigVersion -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateFile - name: UpdateFile() - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_UpdateFile - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateFile - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateFile() - nameWithType: JSONConfig.UpdateFile() -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateFile* - name: UpdateFile - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_UpdateFile_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateFile - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateFile - nameWithType: JSONConfig.UpdateFile -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateValues(System.String) - name: UpdateValues(String) - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_UpdateValues_System_String_ - commentId: M:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateValues(System.String) - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateValues(System.String) - nameWithType: JSONConfig.UpdateValues(String) -- uid: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateValues* - name: UpdateValues - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.JSONConfig.html#OSL_Client_RiotApp_MemoryProcessing_JSONConfig_UpdateValues_ - commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateValues - isSpec: "True" - fullName: OSL_Client.RiotApp.MemoryProcessing.JSONConfig.UpdateValues - nameWithType: JSONConfig.UpdateValues - uid: OSL_Client.RiotApp.MemoryProcessing.Memory name: Memory href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Memory.html @@ -1777,42 +1497,252 @@ references: fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Memory.WriteMemory(Of T)(System.Int32, System.Object) nameWithType: Memory.WriteMemory(Int32, Object) nameWithType.vb: Memory.WriteMemory(Of T)(Int32, Object) -- uid: OSL_Client.RiotApp.MemoryProcessing.Offsets - name: Offsets - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html - commentId: T:OSL_Client.RiotApp.MemoryProcessing.Offsets - fullName: OSL_Client.RiotApp.MemoryProcessing.Offsets - nameWithType: Offsets -- uid: OSL_Client.RiotApp.MemoryProcessing.Offsets.Manager - name: Manager - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Offsets_Manager - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Offsets.Manager - fullName: OSL_Client.RiotApp.MemoryProcessing.Offsets.Manager - nameWithType: Offsets.Manager -- uid: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapCount - name: MapCount - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Offsets_MapCount - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Offsets.MapCount - fullName: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapCount - nameWithType: Offsets.MapCount -- uid: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapNodeNetId - name: MapNodeNetId - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Offsets_MapNodeNetId - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Offsets.MapNodeNetId - fullName: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapNodeNetId - nameWithType: Offsets.MapNodeNetId -- uid: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapNodeObject - name: MapNodeObject - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Offsets_MapNodeObject - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Offsets.MapNodeObject - fullName: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapNodeObject - nameWithType: Offsets.MapNodeObject -- uid: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapRoot - name: MapRoot - href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Offsets_MapRoot - commentId: F:OSL_Client.RiotApp.MemoryProcessing.Offsets.MapRoot - fullName: OSL_Client.RiotApp.MemoryProcessing.Offsets.MapRoot - nameWithType: Offsets.MapRoot +- uid: OSL_Client.RiotApp.MemoryProcessing.Object + name: OSL_Client.RiotApp.MemoryProcessing.Object + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.html + commentId: N:OSL_Client.RiotApp.MemoryProcessing.Object + fullName: OSL_Client.RiotApp.MemoryProcessing.Object + nameWithType: OSL_Client.RiotApp.MemoryProcessing.Object +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject + name: GameObject + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject + nameWithType: GameObject +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.buffDeepSize + name: buffDeepSize + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_buffDeepSize + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.buffDeepSize + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.buffDeepSize + nameWithType: GameObject.buffDeepSize +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.CurrentGold + name: CurrentGold + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_CurrentGold + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.CurrentGold + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.CurrentGold + nameWithType: GameObject.CurrentGold +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.EXP + name: EXP + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_EXP + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.EXP + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.EXP + nameWithType: GameObject.EXP +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.GoldTotal + name: GoldTotal + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_GoldTotal + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.GoldTotal + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.GoldTotal + nameWithType: GameObject.GoldTotal +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Health + name: Health + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Health + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Health + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Health + nameWithType: GameObject.Health +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.ID + name: ID + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_ID + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.ID + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.ID + nameWithType: GameObject.ID +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.IsChampion + name: IsChampion() + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_IsChampion + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.IsChampion + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.IsChampion() + nameWithType: GameObject.IsChampion() +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.IsChampion* + name: IsChampion + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_IsChampion_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.IsChampion + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.IsChampion + nameWithType: GameObject.IsChampion +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Level + name: Level + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Level + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Level + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Level + nameWithType: GameObject.Level +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory(System.Byte[],System.Int32,System.Boolean) + name: LoadChampFromMemory(Byte[], Int32, Boolean) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_LoadChampFromMemory_System_Byte___System_Int32_System_Boolean_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory(System.Byte[],System.Int32,System.Boolean) + name.vb: LoadChampFromMemory(Byte(), Int32, Boolean) + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory(System.Byte[], System.Int32, System.Boolean) + fullName.vb: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory(System.Byte(), System.Int32, System.Boolean) + nameWithType: GameObject.LoadChampFromMemory(Byte[], Int32, Boolean) + nameWithType.vb: GameObject.LoadChampFromMemory(Byte(), Int32, Boolean) +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory* + name: LoadChampFromMemory + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_LoadChampFromMemory_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadChampFromMemory + nameWithType: GameObject.LoadChampFromMemory +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadFromMemory(System.Int32,System.Boolean,System.Int32) + name: LoadFromMemory(Int32, Boolean, Int32) + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_LoadFromMemory_System_Int32_System_Boolean_System_Int32_ + commentId: M:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadFromMemory(System.Int32,System.Boolean,System.Int32) + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadFromMemory(System.Int32, System.Boolean, System.Int32) + nameWithType: GameObject.LoadFromMemory(Int32, Boolean, Int32) +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadFromMemory* + name: LoadFromMemory + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_LoadFromMemory_ + commentId: Overload:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadFromMemory + isSpec: "True" + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.LoadFromMemory + nameWithType: GameObject.LoadFromMemory +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Mana + name: Mana + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Mana + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Mana + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Mana + nameWithType: GameObject.Mana +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.MaxHealth + name: MaxHealth + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_MaxHealth + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.MaxHealth + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.MaxHealth + nameWithType: GameObject.MaxHealth +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.MaxMana + name: MaxMana + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_MaxMana + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.MaxMana + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.MaxMana + nameWithType: GameObject.MaxMana +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Name + name: Name + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Name + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Name + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Name + nameWithType: GameObject.Name +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.NetworkID + name: NetworkID + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_NetworkID + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.NetworkID + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.NetworkID + nameWithType: GameObject.NetworkID +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets + name: GameObject.Offsets + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html + commentId: T:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets + nameWithType: GameObject.Offsets +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.CurrentGold + name: CurrentGold + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_CurrentGold + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.CurrentGold + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.CurrentGold + nameWithType: GameObject.Offsets.CurrentGold +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.EXP + name: EXP + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_EXP + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.EXP + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.EXP + nameWithType: GameObject.Offsets.EXP +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.GoldTotal + name: GoldTotal + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_GoldTotal + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.GoldTotal + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.GoldTotal + nameWithType: GameObject.Offsets.GoldTotal +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Health + name: Health + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_Health + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Health + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Health + nameWithType: GameObject.Offsets.Health +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ID + name: ID + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_ID + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ID + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ID + nameWithType: GameObject.Offsets.ID +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemInfo + name: ItemInfo + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_ItemInfo + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemInfo + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemInfo + nameWithType: GameObject.Offsets.ItemInfo +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemInfoId + name: ItemInfoId + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_ItemInfoId + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemInfoId + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemInfoId + nameWithType: GameObject.Offsets.ItemInfoId +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemList + name: ItemList + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_ItemList + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemList + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemList + nameWithType: GameObject.Offsets.ItemList +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemListItem + name: ItemListItem + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_ItemListItem + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemListItem + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.ItemListItem + nameWithType: GameObject.Offsets.ItemListItem +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Mana + name: Mana + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_Mana + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Mana + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Mana + nameWithType: GameObject.Offsets.Mana +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.MaxHealth + name: MaxHealth + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_MaxHealth + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.MaxHealth + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.MaxHealth + nameWithType: GameObject.Offsets.MaxHealth +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.MaxMana + name: MaxMana + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_MaxMana + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.MaxMana + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.MaxMana + nameWithType: GameObject.Offsets.MaxMana +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Name + name: Name + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_Name + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Name + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Name + nameWithType: GameObject.Offsets.Name +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.NetworkID + name: NetworkID + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_NetworkID + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.NetworkID + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.NetworkID + nameWithType: GameObject.Offsets.NetworkID +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Pos + name: Pos + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_Pos + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Pos + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Pos + nameWithType: GameObject.Offsets.Pos +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.SpellBook + name: SpellBook + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_SpellBook + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.SpellBook + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.SpellBook + nameWithType: GameObject.Offsets.SpellBook +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Team + name: Team + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Offsets_Team + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Team + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Offsets.Team + nameWithType: GameObject.Offsets.Team +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Position + name: Position + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Position + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Position + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Position + nameWithType: GameObject.Position +- uid: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Team + name: Team + href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.html#OSL_Client_RiotApp_MemoryProcessing_Object_GameObject_Team + commentId: F:OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Team + fullName: OSL_Client.RiotApp.MemoryProcessing.Object.GameObject.Team + nameWithType: GameObject.Team - uid: OSL_Client.RiotApp.MemoryProcessing.Snapshot name: Snapshot href: apiclient/OSL_Client.RiotApp.MemoryProcessing.Snapshot.html @@ -2188,6 +2118,45 @@ references: isSpec: "True" fullName: OSL_Server.Configuration.Config.LoadConfigChampSelectView4 nameWithType: Config.LoadConfigChampSelectView4 +- uid: OSL_Server.Configuration.Config.LoadConfigEndGameView1Page + name: LoadConfigEndGameView1Page() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigEndGameView1Page + commentId: M:OSL_Server.Configuration.Config.LoadConfigEndGameView1Page + fullName: OSL_Server.Configuration.Config.LoadConfigEndGameView1Page() + nameWithType: Config.LoadConfigEndGameView1Page() +- uid: OSL_Server.Configuration.Config.LoadConfigEndGameView1Page* + name: LoadConfigEndGameView1Page + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigEndGameView1Page_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigEndGameView1Page + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigEndGameView1Page + nameWithType: Config.LoadConfigEndGameView1Page +- uid: OSL_Server.Configuration.Config.LoadConfigEndGameView2Page + name: LoadConfigEndGameView2Page() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigEndGameView2Page + commentId: M:OSL_Server.Configuration.Config.LoadConfigEndGameView2Page + fullName: OSL_Server.Configuration.Config.LoadConfigEndGameView2Page() + nameWithType: Config.LoadConfigEndGameView2Page() +- uid: OSL_Server.Configuration.Config.LoadConfigEndGameView2Page* + name: LoadConfigEndGameView2Page + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigEndGameView2Page_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigEndGameView2Page + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigEndGameView2Page + nameWithType: Config.LoadConfigEndGameView2Page +- uid: OSL_Server.Configuration.Config.LoadConfigEndGameView3Page + name: LoadConfigEndGameView3Page() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigEndGameView3Page + commentId: M:OSL_Server.Configuration.Config.LoadConfigEndGameView3Page + fullName: OSL_Server.Configuration.Config.LoadConfigEndGameView3Page() + nameWithType: Config.LoadConfigEndGameView3Page() +- uid: OSL_Server.Configuration.Config.LoadConfigEndGameView3Page* + name: LoadConfigEndGameView3Page + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigEndGameView3Page_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigEndGameView3Page + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigEndGameView3Page + nameWithType: Config.LoadConfigEndGameView3Page - uid: OSL_Server.Configuration.Config.LoadConfigInGameView1 name: LoadConfigInGameView1() href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigInGameView1 @@ -2240,6 +2209,110 @@ references: isSpec: "True" fullName: OSL_Server.Configuration.Config.LoadConfigOslServerHost nameWithType: Config.LoadConfigOslServerHost +- uid: OSL_Server.Configuration.Config.LoadConfigRunesAdcPage + name: LoadConfigRunesAdcPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesAdcPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesAdcPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesAdcPage() + nameWithType: Config.LoadConfigRunesAdcPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesAdcPage* + name: LoadConfigRunesAdcPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesAdcPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesAdcPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesAdcPage + nameWithType: Config.LoadConfigRunesAdcPage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesAdcSuppPage + name: LoadConfigRunesAdcSuppPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesAdcSuppPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesAdcSuppPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesAdcSuppPage() + nameWithType: Config.LoadConfigRunesAdcSuppPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesAdcSuppPage* + name: LoadConfigRunesAdcSuppPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesAdcSuppPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesAdcSuppPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesAdcSuppPage + nameWithType: Config.LoadConfigRunesAdcSuppPage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesAllPage + name: LoadConfigRunesAllPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesAllPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesAllPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesAllPage() + nameWithType: Config.LoadConfigRunesAllPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesAllPage* + name: LoadConfigRunesAllPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesAllPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesAllPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesAllPage + nameWithType: Config.LoadConfigRunesAllPage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesJunglePage + name: LoadConfigRunesJunglePage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesJunglePage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesJunglePage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesJunglePage() + nameWithType: Config.LoadConfigRunesJunglePage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesJunglePage* + name: LoadConfigRunesJunglePage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesJunglePage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesJunglePage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesJunglePage + nameWithType: Config.LoadConfigRunesJunglePage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesMidPage + name: LoadConfigRunesMidPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesMidPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesMidPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesMidPage() + nameWithType: Config.LoadConfigRunesMidPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesMidPage* + name: LoadConfigRunesMidPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesMidPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesMidPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesMidPage + nameWithType: Config.LoadConfigRunesMidPage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesPage + name: LoadConfigRunesPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesPage() + nameWithType: Config.LoadConfigRunesPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesPage* + name: LoadConfigRunesPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesPage + nameWithType: Config.LoadConfigRunesPage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesSuppPage + name: LoadConfigRunesSuppPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesSuppPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesSuppPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesSuppPage() + nameWithType: Config.LoadConfigRunesSuppPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesSuppPage* + name: LoadConfigRunesSuppPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesSuppPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesSuppPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesSuppPage + nameWithType: Config.LoadConfigRunesSuppPage +- uid: OSL_Server.Configuration.Config.LoadConfigRunesTopPage + name: LoadConfigRunesTopPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesTopPage + commentId: M:OSL_Server.Configuration.Config.LoadConfigRunesTopPage + fullName: OSL_Server.Configuration.Config.LoadConfigRunesTopPage() + nameWithType: Config.LoadConfigRunesTopPage() +- uid: OSL_Server.Configuration.Config.LoadConfigRunesTopPage* + name: LoadConfigRunesTopPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigRunesTopPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadConfigRunesTopPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadConfigRunesTopPage + nameWithType: Config.LoadConfigRunesTopPage - uid: OSL_Server.Configuration.Config.LoadConfigServerSocket name: LoadConfigServerSocket() href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadConfigServerSocket @@ -2279,6 +2352,19 @@ references: isSpec: "True" fullName: OSL_Server.Configuration.Config.LoadDefaultSession nameWithType: Config.LoadDefaultSession +- uid: OSL_Server.Configuration.Config.LoadDefaultSessionEndGame + name: LoadDefaultSessionEndGame() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadDefaultSessionEndGame + commentId: M:OSL_Server.Configuration.Config.LoadDefaultSessionEndGame + fullName: OSL_Server.Configuration.Config.LoadDefaultSessionEndGame() + nameWithType: Config.LoadDefaultSessionEndGame() +- uid: OSL_Server.Configuration.Config.LoadDefaultSessionEndGame* + name: LoadDefaultSessionEndGame + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadDefaultSessionEndGame_ + commentId: Overload:OSL_Server.Configuration.Config.LoadDefaultSessionEndGame + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadDefaultSessionEndGame + nameWithType: Config.LoadDefaultSessionEndGame - uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigChampSelectView1 name: LoadFormatingDataConfigChampSelectView1() href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigChampSelectView1 @@ -2331,6 +2417,45 @@ references: isSpec: "True" fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigChampSelectView4 nameWithType: Config.LoadFormatingDataConfigChampSelectView4 +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView1 + name: LoadFormatingDataConfigEndGameView1() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigEndGameView1 + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView1 + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView1() + nameWithType: Config.LoadFormatingDataConfigEndGameView1() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView1* + name: LoadFormatingDataConfigEndGameView1 + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigEndGameView1_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView1 + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView1 + nameWithType: Config.LoadFormatingDataConfigEndGameView1 +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView2 + name: LoadFormatingDataConfigEndGameView2() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigEndGameView2 + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView2 + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView2() + nameWithType: Config.LoadFormatingDataConfigEndGameView2() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView2* + name: LoadFormatingDataConfigEndGameView2 + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigEndGameView2_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView2 + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView2 + nameWithType: Config.LoadFormatingDataConfigEndGameView2 +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView3 + name: LoadFormatingDataConfigEndGameView3() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigEndGameView3 + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView3 + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView3() + nameWithType: Config.LoadFormatingDataConfigEndGameView3() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView3* + name: LoadFormatingDataConfigEndGameView3 + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigEndGameView3_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView3 + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigEndGameView3 + nameWithType: Config.LoadFormatingDataConfigEndGameView3 - uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigInGameView1 name: LoadFormatingDataConfigInGameView1() href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigInGameView1 @@ -2370,6 +2495,110 @@ references: isSpec: "True" fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigInGameView3 nameWithType: Config.LoadFormatingDataConfigInGameView3 +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcPage + name: LoadFormatingDataConfigRunesAdcPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesAdcPage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcPage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcPage() + nameWithType: Config.LoadFormatingDataConfigRunesAdcPage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcPage* + name: LoadFormatingDataConfigRunesAdcPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesAdcPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcPage + nameWithType: Config.LoadFormatingDataConfigRunesAdcPage +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcSuppPage + name: LoadFormatingDataConfigRunesAdcSuppPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesAdcSuppPage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcSuppPage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcSuppPage() + nameWithType: Config.LoadFormatingDataConfigRunesAdcSuppPage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcSuppPage* + name: LoadFormatingDataConfigRunesAdcSuppPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesAdcSuppPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcSuppPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAdcSuppPage + nameWithType: Config.LoadFormatingDataConfigRunesAdcSuppPage +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAllPage + name: LoadFormatingDataConfigRunesAllPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesAllPage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAllPage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAllPage() + nameWithType: Config.LoadFormatingDataConfigRunesAllPage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAllPage* + name: LoadFormatingDataConfigRunesAllPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesAllPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAllPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesAllPage + nameWithType: Config.LoadFormatingDataConfigRunesAllPage +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesJunglePage + name: LoadFormatingDataConfigRunesJunglePage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesJunglePage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesJunglePage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesJunglePage() + nameWithType: Config.LoadFormatingDataConfigRunesJunglePage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesJunglePage* + name: LoadFormatingDataConfigRunesJunglePage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesJunglePage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesJunglePage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesJunglePage + nameWithType: Config.LoadFormatingDataConfigRunesJunglePage +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesMidPage + name: LoadFormatingDataConfigRunesMidPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesMidPage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesMidPage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesMidPage() + nameWithType: Config.LoadFormatingDataConfigRunesMidPage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesMidPage* + name: LoadFormatingDataConfigRunesMidPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesMidPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesMidPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesMidPage + nameWithType: Config.LoadFormatingDataConfigRunesMidPage +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesSuppPage + name: LoadFormatingDataConfigRunesSuppPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesSuppPage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesSuppPage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesSuppPage() + nameWithType: Config.LoadFormatingDataConfigRunesSuppPage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesSuppPage* + name: LoadFormatingDataConfigRunesSuppPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesSuppPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesSuppPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesSuppPage + nameWithType: Config.LoadFormatingDataConfigRunesSuppPage +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesTopPage + name: LoadFormatingDataConfigRunesTopPage() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesTopPage + commentId: M:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesTopPage + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesTopPage() + nameWithType: Config.LoadFormatingDataConfigRunesTopPage() +- uid: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesTopPage* + name: LoadFormatingDataConfigRunesTopPage + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadFormatingDataConfigRunesTopPage_ + commentId: Overload:OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesTopPage + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadFormatingDataConfigRunesTopPage + nameWithType: Config.LoadFormatingDataConfigRunesTopPage +- uid: OSL_Server.Configuration.Config.LoadWebRiotApiKey + name: LoadWebRiotApiKey() + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadWebRiotApiKey + commentId: M:OSL_Server.Configuration.Config.LoadWebRiotApiKey + fullName: OSL_Server.Configuration.Config.LoadWebRiotApiKey() + nameWithType: Config.LoadWebRiotApiKey() +- uid: OSL_Server.Configuration.Config.LoadWebRiotApiKey* + name: LoadWebRiotApiKey + href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_LoadWebRiotApiKey_ + commentId: Overload:OSL_Server.Configuration.Config.LoadWebRiotApiKey + isSpec: "True" + fullName: OSL_Server.Configuration.Config.LoadWebRiotApiKey + nameWithType: Config.LoadWebRiotApiKey - uid: OSL_Server.Configuration.Config.oslServerHost name: oslServerHost href: apiserver/OSL_Server.Configuration.Config.html#OSL_Server_Configuration_Config_oslServerHost @@ -2394,89 +2623,6 @@ references: commentId: F:OSL_Server.Configuration.Config.oslServerHttpsPort fullName: OSL_Server.Configuration.Config.oslServerHttpsPort nameWithType: Config.oslServerHttpsPort -- uid: OSL_Server.Data - name: OSL_Server.Data - href: apiserver/OSL_Server.Data.html - commentId: N:OSL_Server.Data - fullName: OSL_Server.Data - nameWithType: OSL_Server.Data -- uid: OSL_Server.Data.WeatherForecast - name: WeatherForecast - href: apiserver/OSL_Server.Data.WeatherForecast.html - commentId: T:OSL_Server.Data.WeatherForecast - fullName: OSL_Server.Data.WeatherForecast - nameWithType: WeatherForecast -- uid: OSL_Server.Data.WeatherForecast.Date - name: Date - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_Date - commentId: P:OSL_Server.Data.WeatherForecast.Date - fullName: OSL_Server.Data.WeatherForecast.Date - nameWithType: WeatherForecast.Date -- uid: OSL_Server.Data.WeatherForecast.Date* - name: Date - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_Date_ - commentId: Overload:OSL_Server.Data.WeatherForecast.Date - isSpec: "True" - fullName: OSL_Server.Data.WeatherForecast.Date - nameWithType: WeatherForecast.Date -- uid: OSL_Server.Data.WeatherForecast.Summary - name: Summary - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_Summary - commentId: P:OSL_Server.Data.WeatherForecast.Summary - fullName: OSL_Server.Data.WeatherForecast.Summary - nameWithType: WeatherForecast.Summary -- uid: OSL_Server.Data.WeatherForecast.Summary* - name: Summary - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_Summary_ - commentId: Overload:OSL_Server.Data.WeatherForecast.Summary - isSpec: "True" - fullName: OSL_Server.Data.WeatherForecast.Summary - nameWithType: WeatherForecast.Summary -- uid: OSL_Server.Data.WeatherForecast.TemperatureC - name: TemperatureC - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_TemperatureC - commentId: P:OSL_Server.Data.WeatherForecast.TemperatureC - fullName: OSL_Server.Data.WeatherForecast.TemperatureC - nameWithType: WeatherForecast.TemperatureC -- uid: OSL_Server.Data.WeatherForecast.TemperatureC* - name: TemperatureC - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_TemperatureC_ - commentId: Overload:OSL_Server.Data.WeatherForecast.TemperatureC - isSpec: "True" - fullName: OSL_Server.Data.WeatherForecast.TemperatureC - nameWithType: WeatherForecast.TemperatureC -- uid: OSL_Server.Data.WeatherForecast.TemperatureF - name: TemperatureF - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_TemperatureF - commentId: P:OSL_Server.Data.WeatherForecast.TemperatureF - fullName: OSL_Server.Data.WeatherForecast.TemperatureF - nameWithType: WeatherForecast.TemperatureF -- uid: OSL_Server.Data.WeatherForecast.TemperatureF* - name: TemperatureF - href: apiserver/OSL_Server.Data.WeatherForecast.html#OSL_Server_Data_WeatherForecast_TemperatureF_ - commentId: Overload:OSL_Server.Data.WeatherForecast.TemperatureF - isSpec: "True" - fullName: OSL_Server.Data.WeatherForecast.TemperatureF - nameWithType: WeatherForecast.TemperatureF -- uid: OSL_Server.Data.WeatherForecastService - name: WeatherForecastService - href: apiserver/OSL_Server.Data.WeatherForecastService.html - commentId: T:OSL_Server.Data.WeatherForecastService - fullName: OSL_Server.Data.WeatherForecastService - nameWithType: WeatherForecastService -- uid: OSL_Server.Data.WeatherForecastService.GetForecastAsync(DateTime) - name: GetForecastAsync(DateTime) - href: apiserver/OSL_Server.Data.WeatherForecastService.html#OSL_Server_Data_WeatherForecastService_GetForecastAsync_DateTime_ - commentId: M:OSL_Server.Data.WeatherForecastService.GetForecastAsync(DateTime) - fullName: OSL_Server.Data.WeatherForecastService.GetForecastAsync(DateTime) - nameWithType: WeatherForecastService.GetForecastAsync(DateTime) -- uid: OSL_Server.Data.WeatherForecastService.GetForecastAsync* - name: GetForecastAsync - href: apiserver/OSL_Server.Data.WeatherForecastService.html#OSL_Server_Data_WeatherForecastService_GetForecastAsync_ - commentId: Overload:OSL_Server.Data.WeatherForecastService.GetForecastAsync - isSpec: "True" - fullName: OSL_Server.Data.WeatherForecastService.GetForecastAsync - nameWithType: WeatherForecastService.GetForecastAsync - uid: OSL_Server.DataLoader.CDragon name: OSL_Server.DataLoader.CDragon href: apiserver/OSL_Server.DataLoader.CDragon.html @@ -3463,6 +3609,281 @@ references: isSpec: "True" fullName: OSL_Server.DataLoader.CDragon.SummonerSpells.Name nameWithType: SummonerSpells.Name +- uid: OSL_Server.DataLoader.WebApiRiot + name: OSL_Server.DataLoader.WebApiRiot + href: apiserver/OSL_Server.DataLoader.WebApiRiot.html + commentId: N:OSL_Server.DataLoader.WebApiRiot + fullName: OSL_Server.DataLoader.WebApiRiot + nameWithType: OSL_Server.DataLoader.WebApiRiot +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5 + name: Match_V5 + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html + commentId: T:OSL_Server.DataLoader.WebApiRiot.Match_V5 + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5 + nameWithType: Match_V5 +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5.ByPuuid(System.String,System.Int64,System.Int64,System.Int32,System.String,System.Int32,System.Int32) + name: ByPuuid(String, Int64, Int64, Int32, String, Int32, Int32) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html#OSL_Server_DataLoader_WebApiRiot_Match_V5_ByPuuid_System_String_System_Int64_System_Int64_System_Int32_System_String_System_Int32_System_Int32_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Match_V5.ByPuuid(System.String,System.Int64,System.Int64,System.Int32,System.String,System.Int32,System.Int32) + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5.ByPuuid(System.String, System.Int64, System.Int64, System.Int32, System.String, System.Int32, System.Int32) + nameWithType: Match_V5.ByPuuid(String, Int64, Int64, Int32, String, Int32, Int32) +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5.ByPuuid* + name: ByPuuid + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html#OSL_Server_DataLoader_WebApiRiot_Match_V5_ByPuuid_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Match_V5.ByPuuid + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5.ByPuuid + nameWithType: Match_V5.ByPuuid +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5.Matches(System.Int64) + name: Matches(Int64) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html#OSL_Server_DataLoader_WebApiRiot_Match_V5_Matches_System_Int64_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Match_V5.Matches(System.Int64) + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5.Matches(System.Int64) + nameWithType: Match_V5.Matches(Int64) +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5.Matches* + name: Matches + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html#OSL_Server_DataLoader_WebApiRiot_Match_V5_Matches_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Match_V5.Matches + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5.Matches + nameWithType: Match_V5.Matches +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5.Timeline(System.Int64) + name: Timeline(Int64) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html#OSL_Server_DataLoader_WebApiRiot_Match_V5_Timeline_System_Int64_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Match_V5.Timeline(System.Int64) + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5.Timeline(System.Int64) + nameWithType: Match_V5.Timeline(Int64) +- uid: OSL_Server.DataLoader.WebApiRiot.Match_V5.Timeline* + name: Timeline + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Match_V5.html#OSL_Server_DataLoader_WebApiRiot_Match_V5_Timeline_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Match_V5.Timeline + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Match_V5.Timeline + nameWithType: Match_V5.Timeline +- uid: OSL_Server.DataLoader.WebApiRiot.Spectator_V4 + name: Spectator_V4 + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html + commentId: T:OSL_Server.DataLoader.WebApiRiot.Spectator_V4 + fullName: OSL_Server.DataLoader.WebApiRiot.Spectator_V4 + nameWithType: Spectator_V4 +- uid: OSL_Server.DataLoader.WebApiRiot.Spectator_V4.BySummoner(System.String) + name: BySummoner(String) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html#OSL_Server_DataLoader_WebApiRiot_Spectator_V4_BySummoner_System_String_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Spectator_V4.BySummoner(System.String) + fullName: OSL_Server.DataLoader.WebApiRiot.Spectator_V4.BySummoner(System.String) + nameWithType: Spectator_V4.BySummoner(String) +- uid: OSL_Server.DataLoader.WebApiRiot.Spectator_V4.BySummoner* + name: BySummoner + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Spectator_V4.html#OSL_Server_DataLoader_WebApiRiot_Spectator_V4_BySummoner_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Spectator_V4.BySummoner + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Spectator_V4.BySummoner + nameWithType: Spectator_V4.BySummoner +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4 + name: Summoner_V4 + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html + commentId: T:OSL_Server.DataLoader.WebApiRiot.Summoner_V4 + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4 + nameWithType: Summoner_V4 +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByAccount(System.String) + name: ByAccount(String) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_ByAccount_System_String_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByAccount(System.String) + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByAccount(System.String) + nameWithType: Summoner_V4.ByAccount(String) +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByAccount* + name: ByAccount + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_ByAccount_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByAccount + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByAccount + nameWithType: Summoner_V4.ByAccount +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByName(System.String) + name: ByName(String) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_ByName_System_String_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByName(System.String) + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByName(System.String) + nameWithType: Summoner_V4.ByName(String) +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByName* + name: ByName + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_ByName_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByName + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByName + nameWithType: Summoner_V4.ByName +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByPuuid(System.String) + name: ByPuuid(String) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_ByPuuid_System_String_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByPuuid(System.String) + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByPuuid(System.String) + nameWithType: Summoner_V4.ByPuuid(String) +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByPuuid* + name: ByPuuid + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_ByPuuid_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByPuuid + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.ByPuuid + nameWithType: Summoner_V4.ByPuuid +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.BySummonerId(System.String) + name: BySummonerId(String) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_BySummonerId_System_String_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.BySummonerId(System.String) + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.BySummonerId(System.String) + nameWithType: Summoner_V4.BySummonerId(String) +- uid: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.BySummonerId* + name: BySummonerId + href: apiserver/OSL_Server.DataLoader.WebApiRiot.Summoner_V4.html#OSL_Server_DataLoader_WebApiRiot_Summoner_V4_BySummonerId_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.Summoner_V4.BySummonerId + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.Summoner_V4.BySummonerId + nameWithType: Summoner_V4.BySummonerId +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO + name: SummonerDTO + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html + commentId: T:OSL_Server.DataLoader.WebApiRiot.SummonerDTO + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO + nameWithType: SummonerDTO +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.AccountId + name: AccountId + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_AccountId + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.AccountId + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.AccountId + nameWithType: SummonerDTO.AccountId +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.AccountId* + name: AccountId + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_AccountId_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.AccountId + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.AccountId + nameWithType: SummonerDTO.AccountId +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Id + name: Id + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_Id + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Id + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Id + nameWithType: SummonerDTO.Id +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Id* + name: Id + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_Id_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Id + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Id + nameWithType: SummonerDTO.Id +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Name + name: Name + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_Name + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Name + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Name + nameWithType: SummonerDTO.Name +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Name* + name: Name + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_Name_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Name + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Name + nameWithType: SummonerDTO.Name +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.ProfileIconId + name: ProfileIconId + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_ProfileIconId + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.ProfileIconId + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.ProfileIconId + nameWithType: SummonerDTO.ProfileIconId +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.ProfileIconId* + name: ProfileIconId + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_ProfileIconId_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.ProfileIconId + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.ProfileIconId + nameWithType: SummonerDTO.ProfileIconId +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Puuid + name: Puuid + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_Puuid + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Puuid + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Puuid + nameWithType: SummonerDTO.Puuid +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Puuid* + name: Puuid + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_Puuid_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Puuid + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.Puuid + nameWithType: SummonerDTO.Puuid +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.RevisionDate + name: RevisionDate + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_RevisionDate + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.RevisionDate + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.RevisionDate + nameWithType: SummonerDTO.RevisionDate +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.RevisionDate* + name: RevisionDate + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_RevisionDate_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.RevisionDate + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.RevisionDate + nameWithType: SummonerDTO.RevisionDate +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.SummonerLevel + name: SummonerLevel + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_SummonerLevel + commentId: P:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.SummonerLevel + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.SummonerLevel + nameWithType: SummonerDTO.SummonerLevel +- uid: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.SummonerLevel* + name: SummonerLevel + href: apiserver/OSL_Server.DataLoader.WebApiRiot.SummonerDTO.html#OSL_Server_DataLoader_WebApiRiot_SummonerDTO_SummonerLevel_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.SummonerDTO.SummonerLevel + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.SummonerDTO.SummonerLevel + nameWithType: SummonerDTO.SummonerLevel +- uid: OSL_Server.DataLoader.WebApiRiot.UrlRequest + name: UrlRequest + href: apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html + commentId: T:OSL_Server.DataLoader.WebApiRiot.UrlRequest + fullName: OSL_Server.DataLoader.WebApiRiot.UrlRequest + nameWithType: UrlRequest +- uid: OSL_Server.DataLoader.WebApiRiot.UrlRequest.lolSummonerV4SummonersByname + name: lolSummonerV4SummonersByname + href: apiserver/OSL_Server.DataLoader.WebApiRiot.UrlRequest.html#OSL_Server_DataLoader_WebApiRiot_UrlRequest_lolSummonerV4SummonersByname + commentId: F:OSL_Server.DataLoader.WebApiRiot.UrlRequest.lolSummonerV4SummonersByname + fullName: OSL_Server.DataLoader.WebApiRiot.UrlRequest.lolSummonerV4SummonersByname + nameWithType: UrlRequest.lolSummonerV4SummonersByname +- uid: OSL_Server.DataLoader.WebApiRiot.WebApiRiot + name: WebApiRiot + href: apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html + commentId: T:OSL_Server.DataLoader.WebApiRiot.WebApiRiot + fullName: OSL_Server.DataLoader.WebApiRiot.WebApiRiot + nameWithType: WebApiRiot +- uid: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.apiKey + name: apiKey + href: apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html#OSL_Server_DataLoader_WebApiRiot_WebApiRiot_apiKey + commentId: F:OSL_Server.DataLoader.WebApiRiot.WebApiRiot.apiKey + fullName: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.apiKey + nameWithType: WebApiRiot.apiKey +- uid: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.GetResponseWebApiRiot + name: GetResponseWebApiRiot() + href: apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html#OSL_Server_DataLoader_WebApiRiot_WebApiRiot_GetResponseWebApiRiot + commentId: M:OSL_Server.DataLoader.WebApiRiot.WebApiRiot.GetResponseWebApiRiot + fullName: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.GetResponseWebApiRiot() + nameWithType: WebApiRiot.GetResponseWebApiRiot() +- uid: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.GetResponseWebApiRiot* + name: GetResponseWebApiRiot + href: apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html#OSL_Server_DataLoader_WebApiRiot_WebApiRiot_GetResponseWebApiRiot_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.WebApiRiot.GetResponseWebApiRiot + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.GetResponseWebApiRiot + nameWithType: WebApiRiot.GetResponseWebApiRiot +- uid: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.RequestWebApiRiot(System.String) + name: RequestWebApiRiot(String) + href: apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html#OSL_Server_DataLoader_WebApiRiot_WebApiRiot_RequestWebApiRiot_System_String_ + commentId: M:OSL_Server.DataLoader.WebApiRiot.WebApiRiot.RequestWebApiRiot(System.String) + fullName: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.RequestWebApiRiot(System.String) + nameWithType: WebApiRiot.RequestWebApiRiot(String) +- uid: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.RequestWebApiRiot* + name: RequestWebApiRiot + href: apiserver/OSL_Server.DataLoader.WebApiRiot.WebApiRiot.html#OSL_Server_DataLoader_WebApiRiot_WebApiRiot_RequestWebApiRiot_ + commentId: Overload:OSL_Server.DataLoader.WebApiRiot.WebApiRiot.RequestWebApiRiot + isSpec: "True" + fullName: OSL_Server.DataLoader.WebApiRiot.WebApiRiot.RequestWebApiRiot + nameWithType: WebApiRiot.RequestWebApiRiot - uid: OSL_Server.DataReciveClient name: OSL_Server.DataReciveClient href: apiserver/OSL_Server.DataReciveClient.html @@ -4064,6 +4485,545 @@ references: isSpec: "True" fullName: OSL_Server.DataReciveClient.Processing.ChampSelect.Timer.TotalTimeInPhase nameWithType: Timer.TotalTimeInPhase +- uid: OSL_Server.DataReciveClient.Processing.EndGame + name: OSL_Server.DataReciveClient.Processing.EndGame + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.html + commentId: N:OSL_Server.DataReciveClient.Processing.EndGame + fullName: OSL_Server.DataReciveClient.Processing.EndGame + nameWithType: OSL_Server.DataReciveClient.Processing.EndGame +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo + name: EndGameInfo + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html + commentId: T:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo + nameWithType: EndGameInfo +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans + name: EndGameInfo.Bans + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html + commentId: T:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans + nameWithType: EndGameInfo.Bans +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.championId + name: championId + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Bans_championId + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.championId + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.championId + nameWithType: EndGameInfo.Bans.championId +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.championId* + name: championId + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Bans_championId_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.championId + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.championId + nameWithType: EndGameInfo.Bans.championId +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.pickTurn + name: pickTurn + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Bans_pickTurn + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.pickTurn + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.pickTurn + nameWithType: EndGameInfo.Bans.pickTurn +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.pickTurn* + name: pickTurn + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Bans_pickTurn_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.pickTurn + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Bans.pickTurn + nameWithType: EndGameInfo.Bans.pickTurn +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.EndGame(System.String) + name: EndGame(String) + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_EndGame_System_String_ + commentId: M:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.EndGame(System.String) + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.EndGame(System.String) + nameWithType: EndGameInfo.EndGame(String) +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.EndGame* + name: EndGame + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_EndGame_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.EndGame + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.EndGame + nameWithType: EndGameInfo.EndGame +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events + name: EndGameInfo.Events + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html + commentId: T:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events + nameWithType: EndGameInfo.Events +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.killerTeamId + name: killerTeamId + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Events_killerTeamId + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.killerTeamId + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.killerTeamId + nameWithType: EndGameInfo.Events.killerTeamId +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.killerTeamId* + name: killerTeamId + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Events_killerTeamId_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.killerTeamId + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.killerTeamId + nameWithType: EndGameInfo.Events.killerTeamId +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterSubType + name: monsterSubType + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Events_monsterSubType + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterSubType + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterSubType + nameWithType: EndGameInfo.Events.monsterSubType +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterSubType* + name: monsterSubType + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Events_monsterSubType_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterSubType + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterSubType + nameWithType: EndGameInfo.Events.monsterSubType +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterType + name: monsterType + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Events_monsterType + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterType + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterType + nameWithType: EndGameInfo.Events.monsterType +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterType* + name: monsterType + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Events_monsterType_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterType + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Events.monsterType + nameWithType: EndGameInfo.Events.monsterType +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.infoEndGame + name: infoEndGame + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_infoEndGame + commentId: F:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.infoEndGame + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.infoEndGame + nameWithType: EndGameInfo.infoEndGame +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame + name: EndGameInfo.InfoEndGame + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html + commentId: T:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame + nameWithType: EndGameInfo.InfoEndGame +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.bans + name: bans + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_bans + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.bans + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.bans + nameWithType: EndGameInfo.InfoEndGame.bans +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.bans* + name: bans + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_bans_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.bans + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.bans + nameWithType: EndGameInfo.InfoEndGame.bans +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.events + name: events + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_events + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.events + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.events + nameWithType: EndGameInfo.InfoEndGame.events +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.events* + name: events + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_events_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.events + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.events + nameWithType: EndGameInfo.InfoEndGame.events +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.gameLength + name: gameLength + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_gameLength + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.gameLength + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.gameLength + nameWithType: EndGameInfo.InfoEndGame.gameLength +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.gameLength* + name: gameLength + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_gameLength_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.gameLength + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.gameLength + nameWithType: EndGameInfo.InfoEndGame.gameLength +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.summonerInfos + name: summonerInfos + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_summonerInfos + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.summonerInfos + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.summonerInfos + nameWithType: EndGameInfo.InfoEndGame.summonerInfos +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.summonerInfos* + name: summonerInfos + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_InfoEndGame_summonerInfos_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.summonerInfos + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.InfoEndGame.summonerInfos + nameWithType: EndGameInfo.InfoEndGame.summonerInfos +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentEndOfMatch + name: jsonContentEndOfMatch + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_jsonContentEndOfMatch + commentId: F:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentEndOfMatch + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentEndOfMatch + nameWithType: EndGameInfo.jsonContentEndOfMatch +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentMatch + name: jsonContentMatch + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_jsonContentMatch + commentId: F:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentMatch + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentMatch + nameWithType: EndGameInfo.jsonContentMatch +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentTimeline + name: jsonContentTimeline + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_jsonContentTimeline + commentId: F:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentTimeline + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.jsonContentTimeline + nameWithType: EndGameInfo.jsonContentTimeline +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats + name: EndGameInfo.Stats + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html + commentId: T:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats + nameWithType: EndGameInfo.Stats +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.assist + name: assist + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_assist + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.assist + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.assist + nameWithType: EndGameInfo.Stats.assist +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.assist* + name: assist + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_assist_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.assist + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.assist + nameWithType: EndGameInfo.Stats.assist +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDeal + name: damageDeal + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDeal + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDeal + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDeal + nameWithType: EndGameInfo.Stats.damageDeal +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDeal* + name: damageDeal + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDeal_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDeal + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDeal + nameWithType: EndGameInfo.Stats.damageDeal +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToBuildings + name: damageDealToBuildings + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToBuildings + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToBuildings + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToBuildings + nameWithType: EndGameInfo.Stats.damageDealToBuildings +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToBuildings* + name: damageDealToBuildings + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToBuildings_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToBuildings + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToBuildings + nameWithType: EndGameInfo.Stats.damageDealToBuildings +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToChampions + name: damageDealToChampions + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToChampions + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToChampions + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToChampions + nameWithType: EndGameInfo.Stats.damageDealToChampions +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToChampions* + name: damageDealToChampions + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToChampions_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToChampions + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToChampions + nameWithType: EndGameInfo.Stats.damageDealToChampions +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToObjectives + name: damageDealToObjectives + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToObjectives + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToObjectives + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToObjectives + nameWithType: EndGameInfo.Stats.damageDealToObjectives +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToObjectives* + name: damageDealToObjectives + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToObjectives_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToObjectives + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToObjectives + nameWithType: EndGameInfo.Stats.damageDealToObjectives +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToTurrets + name: damageDealToTurrets + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToTurrets + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToTurrets + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToTurrets + nameWithType: EndGameInfo.Stats.damageDealToTurrets +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToTurrets* + name: damageDealToTurrets + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageDealToTurrets_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToTurrets + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageDealToTurrets + nameWithType: EndGameInfo.Stats.damageDealToTurrets +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageSelftMitigated + name: damageSelftMitigated + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageSelftMitigated + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageSelftMitigated + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageSelftMitigated + nameWithType: EndGameInfo.Stats.damageSelftMitigated +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageSelftMitigated* + name: damageSelftMitigated + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageSelftMitigated_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageSelftMitigated + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageSelftMitigated + nameWithType: EndGameInfo.Stats.damageSelftMitigated +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageTaken + name: damageTaken + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageTaken + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageTaken + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageTaken + nameWithType: EndGameInfo.Stats.damageTaken +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageTaken* + name: damageTaken + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_damageTaken_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageTaken + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.damageTaken + nameWithType: EndGameInfo.Stats.damageTaken +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.deaths + name: deaths + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_deaths + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.deaths + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.deaths + nameWithType: EndGameInfo.Stats.deaths +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.deaths* + name: deaths + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_deaths_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.deaths + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.deaths + nameWithType: EndGameInfo.Stats.deaths +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.farm + name: farm + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_farm + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.farm + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.farm + nameWithType: EndGameInfo.Stats.farm +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.farm* + name: farm + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_farm_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.farm + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.farm + nameWithType: EndGameInfo.Stats.farm +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.gold + name: gold + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_gold + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.gold + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.gold + nameWithType: EndGameInfo.Stats.gold +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.gold* + name: gold + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_gold_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.gold + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.gold + nameWithType: EndGameInfo.Stats.gold +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.heal + name: heal + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_heal + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.heal + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.heal + nameWithType: EndGameInfo.Stats.heal +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.heal* + name: heal + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_heal_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.heal + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.heal + nameWithType: EndGameInfo.Stats.heal +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.kill + name: kill + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_kill + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.kill + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.kill + nameWithType: EndGameInfo.Stats.kill +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.kill* + name: kill + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_kill_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.kill + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.kill + nameWithType: EndGameInfo.Stats.kill +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.level + name: level + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_level + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.level + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.level + nameWithType: EndGameInfo.Stats.level +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.level* + name: level + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_level_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.level + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.level + nameWithType: EndGameInfo.Stats.level +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.magicDamageDealToChampion + name: magicDamageDealToChampion + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_magicDamageDealToChampion + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.magicDamageDealToChampion + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.magicDamageDealToChampion + nameWithType: EndGameInfo.Stats.magicDamageDealToChampion +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.magicDamageDealToChampion* + name: magicDamageDealToChampion + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_magicDamageDealToChampion_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.magicDamageDealToChampion + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.magicDamageDealToChampion + nameWithType: EndGameInfo.Stats.magicDamageDealToChampion +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.physicalDamageDealToChampion + name: physicalDamageDealToChampion + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_physicalDamageDealToChampion + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.physicalDamageDealToChampion + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.physicalDamageDealToChampion + nameWithType: EndGameInfo.Stats.physicalDamageDealToChampion +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.physicalDamageDealToChampion* + name: physicalDamageDealToChampion + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_physicalDamageDealToChampion_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.physicalDamageDealToChampion + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.physicalDamageDealToChampion + nameWithType: EndGameInfo.Stats.physicalDamageDealToChampion +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.trueDamageDealToChampion + name: trueDamageDealToChampion + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_trueDamageDealToChampion + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.trueDamageDealToChampion + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.trueDamageDealToChampion + nameWithType: EndGameInfo.Stats.trueDamageDealToChampion +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.trueDamageDealToChampion* + name: trueDamageDealToChampion + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_trueDamageDealToChampion_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.trueDamageDealToChampion + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.trueDamageDealToChampion + nameWithType: EndGameInfo.Stats.trueDamageDealToChampion +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.visionScore + name: visionScore + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_visionScore + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.visionScore + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.visionScore + nameWithType: EndGameInfo.Stats.visionScore +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.visionScore* + name: visionScore + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_Stats_visionScore_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.visionScore + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.Stats.visionScore + nameWithType: EndGameInfo.Stats.visionScore +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo + name: EndGameInfo.SummonerInfo + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html + commentId: T:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo + nameWithType: EndGameInfo.SummonerInfo +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championName + name: championName + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_championName + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championName + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championName + nameWithType: EndGameInfo.SummonerInfo.championName +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championName* + name: championName + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_championName_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championName + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championName + nameWithType: EndGameInfo.SummonerInfo.championName +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championSquarePortraitPath + name: championSquarePortraitPath + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_championSquarePortraitPath + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championSquarePortraitPath + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championSquarePortraitPath + nameWithType: EndGameInfo.SummonerInfo.championSquarePortraitPath +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championSquarePortraitPath* + name: championSquarePortraitPath + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_championSquarePortraitPath_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championSquarePortraitPath + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.championSquarePortraitPath + nameWithType: EndGameInfo.SummonerInfo.championSquarePortraitPath +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.items + name: items + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_items + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.items + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.items + nameWithType: EndGameInfo.SummonerInfo.items +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.items* + name: items + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_items_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.items + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.items + nameWithType: EndGameInfo.SummonerInfo.items +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.stats + name: stats + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_stats + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.stats + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.stats + nameWithType: EndGameInfo.SummonerInfo.stats +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.stats* + name: stats + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_stats_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.stats + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.stats + nameWithType: EndGameInfo.SummonerInfo.stats +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.summonerName + name: summonerName + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_summonerName + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.summonerName + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.summonerName + nameWithType: EndGameInfo.SummonerInfo.summonerName +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.summonerName* + name: summonerName + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_summonerName_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.summonerName + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.summonerName + nameWithType: EndGameInfo.SummonerInfo.summonerName +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.teamId + name: teamId + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_teamId + commentId: P:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.teamId + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.teamId + nameWithType: EndGameInfo.SummonerInfo.teamId +- uid: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.teamId* + name: teamId + href: apiserver/OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.html#OSL_Server_DataReciveClient_Processing_EndGame_EndGameInfo_SummonerInfo_teamId_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.teamId + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.EndGame.EndGameInfo.SummonerInfo.teamId + nameWithType: EndGameInfo.SummonerInfo.teamId +- uid: OSL_Server.DataReciveClient.Processing.InGame + name: OSL_Server.DataReciveClient.Processing.InGame + href: apiserver/OSL_Server.DataReciveClient.Processing.InGame.html + commentId: N:OSL_Server.DataReciveClient.Processing.InGame + fullName: OSL_Server.DataReciveClient.Processing.InGame + nameWithType: OSL_Server.DataReciveClient.Processing.InGame +- uid: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo + name: InGameInfo + href: apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html + commentId: T:OSL_Server.DataReciveClient.Processing.InGame.InGameInfo + fullName: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo + nameWithType: InGameInfo +- uid: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.firstCall + name: firstCall + href: apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html#OSL_Server_DataReciveClient_Processing_InGame_InGameInfo_firstCall + commentId: F:OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.firstCall + fullName: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.firstCall + nameWithType: InGameInfo.firstCall +- uid: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.InGame(System.String) + name: InGame(String) + href: apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html#OSL_Server_DataReciveClient_Processing_InGame_InGameInfo_InGame_System_String_ + commentId: M:OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.InGame(System.String) + fullName: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.InGame(System.String) + nameWithType: InGameInfo.InGame(String) +- uid: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.InGame* + name: InGame + href: apiserver/OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.html#OSL_Server_DataReciveClient_Processing_InGame_InGameInfo_InGame_ + commentId: Overload:OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.InGame + isSpec: "True" + fullName: OSL_Server.DataReciveClient.Processing.InGame.InGameInfo.InGame + nameWithType: InGameInfo.InGame - uid: OSL_Server.DataReciveClient.ReciveFromClient name: ReciveFromClient href: apiserver/OSL_Server.DataReciveClient.ReciveFromClient.html @@ -4337,3777 +5297,3783 @@ references: isSpec: "True" fullName: OSL_Server.Pages.CDragonPage.UpdateManual nameWithType: CDragonPage.UpdateManual -- uid: OSL_Server.Pages.ChampSelectPage +- uid: OSL_Server.Pages.ChampSelect + name: OSL_Server.Pages.ChampSelect + href: apiserver/OSL_Server.Pages.ChampSelect.html + commentId: N:OSL_Server.Pages.ChampSelect + fullName: OSL_Server.Pages.ChampSelect + nameWithType: OSL_Server.Pages.ChampSelect +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage name: ChampSelectPage - href: apiserver/OSL_Server.Pages.ChampSelectPage.html - commentId: T:OSL_Server.Pages.ChampSelectPage - fullName: OSL_Server.Pages.ChampSelectPage + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectPage + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage nameWithType: ChampSelectPage -- uid: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay1 name: colorPickerOverlay1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.html#OSL_Server_Pages_ChampSelectPage_colorPickerOverlay1 - commentId: F:OSL_Server.Pages.ChampSelectPage.colorPickerOverlay1 - fullName: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_colorPickerOverlay1 + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay1 nameWithType: ChampSelectPage.colorPickerOverlay1 -- uid: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay2 name: colorPickerOverlay2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.html#OSL_Server_Pages_ChampSelectPage_colorPickerOverlay2 - commentId: F:OSL_Server.Pages.ChampSelectPage.colorPickerOverlay2 - fullName: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_colorPickerOverlay2 + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay2 nameWithType: ChampSelectPage.colorPickerOverlay2 -- uid: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay3 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay3 name: colorPickerOverlay3 - href: apiserver/OSL_Server.Pages.ChampSelectPage.html#OSL_Server_Pages_ChampSelectPage_colorPickerOverlay3 - commentId: F:OSL_Server.Pages.ChampSelectPage.colorPickerOverlay3 - fullName: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay3 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_colorPickerOverlay3 + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay3 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay3 nameWithType: ChampSelectPage.colorPickerOverlay3 -- uid: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay4 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay4 name: colorPickerOverlay4 - href: apiserver/OSL_Server.Pages.ChampSelectPage.html#OSL_Server_Pages_ChampSelectPage_colorPickerOverlay4 - commentId: F:OSL_Server.Pages.ChampSelectPage.colorPickerOverlay4 - fullName: OSL_Server.Pages.ChampSelectPage.colorPickerOverlay4 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_colorPickerOverlay4 + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay4 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorPickerOverlay4 nameWithType: ChampSelectPage.colorPickerOverlay4 -- uid: OSL_Server.Pages.ChampSelectPage.colorValue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorValue name: colorValue - href: apiserver/OSL_Server.Pages.ChampSelectPage.html#OSL_Server_Pages_ChampSelectPage_colorValue - commentId: F:OSL_Server.Pages.ChampSelectPage.colorValue - fullName: OSL_Server.Pages.ChampSelectPage.colorValue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_colorValue + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.colorValue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.colorValue nameWithType: ChampSelectPage.colorValue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1 name: ChampSelectPage.TextValueOverlayView1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html - commentId: T:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1 nameWithType: ChampSelectPage.TextValueOverlayView1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor name: BlueSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColor - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor* name: BlueSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet name: BlueSideBorderColorNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColorNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColorNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit name: BlueSideBorderColorSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColorSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColorSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit* name: BlueSideBorderColorSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColorSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideBorderColorSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit name: BlueSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit* name: BlueSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit name: BlueSideTeamSubtextSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTeamSubtextSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTeamSubtextSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit* name: BlueSideTeamSubtextSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTeamSubtextSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTeamSubtextSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTeamSubtextSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor name: BlueSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColor - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor* name: BlueSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet name: BlueSideTimerBorderColorNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColorNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColorNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit name: BlueSideTimerBorderColorSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColorSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColorSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit* name: BlueSideTimerBorderColorSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColorSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueSideTimerBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.BlueSideTimerBorderColorSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext name: BlueTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueTeamSubtext - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueTeamSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext nameWithType: ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext* name: BlueTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_BlueTeamSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_BlueTeamSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext nameWithType: ChampSelectPage.TextValueOverlayView1.BlueTeamSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell name: DisplaySummonerSpell - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpell - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpell + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell nameWithType: ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell* name: DisplaySummonerSpell - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpell_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpell_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell nameWithType: ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpell -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit name: DisplaySummonerSpellSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpellSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpellSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit* name: DisplaySummonerSpellSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpellSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_DisplaySummonerSpellSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.DisplaySummonerSpellSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackground name: OverlayBackground - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_OverlayBackground - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackground - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_OverlayBackground + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackground nameWithType: ChampSelectPage.TextValueOverlayView1.OverlayBackground -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackground* name: OverlayBackground - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_OverlayBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_OverlayBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackground nameWithType: ChampSelectPage.TextValueOverlayView1.OverlayBackground -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit name: OverlayBackgroundSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_OverlayBackgroundSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_OverlayBackgroundSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit* name: OverlayBackgroundSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_OverlayBackgroundSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_OverlayBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.OverlayBackgroundSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor name: RedSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideBorderColor - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor* name: RedSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet name: RedSideBorderColorNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideBorderColorNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideBorderColorNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideBorderColorNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit name: RedSideBorderColorSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideBorderColorSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideBorderColorSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit* name: RedSideBorderColorSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideBorderColorSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideBorderColorSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit name: RedSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit* name: RedSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit name: RedSideTeamSubtextSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTeamSubtextSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTeamSubtextSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit* name: RedSideTeamSubtextSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTeamSubtextSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTeamSubtextSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTeamSubtextSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor name: RedSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColor - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor* name: RedSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet name: RedSideTimerBorderColorNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColorNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColorNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit name: RedSideTimerBorderColorSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColorSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColorSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit() nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit* name: RedSideTimerBorderColorSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColorSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedSideTimerBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit nameWithType: ChampSelectPage.TextValueOverlayView1.RedSideTimerBorderColorSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext name: RedTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedTeamSubtext - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedTeamSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext nameWithType: ChampSelectPage.TextValueOverlayView1.RedTeamSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext* name: RedTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_RedTeamSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_RedTeamSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.RedTeamSubtext nameWithType: ChampSelectPage.TextValueOverlayView1.RedTeamSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor name: SetBanBackgroundColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBanBackgroundColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBanBackgroundColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor* name: SetBanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBanBackgroundColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBanBackgroundColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor name: SetBlueSideBackgroudColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideBackgroudColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideBackgroudColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor* name: SetBlueSideBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideBackgroudColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor name: SetBlueSideBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor* name: SetBlueSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor name: SetBlueSideTexteColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTexteColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTexteColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor* name: SetBlueSideTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTexteColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor name: SetBlueSideTimerBackgroudColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBackgroudColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBackgroudColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor* name: SetBlueSideTimerBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBackgroudColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor name: SetBlueSideTimerBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor* name: SetBlueSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor name: SetBlueSideTimerTexteColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerTexteColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerTexteColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor* name: SetBlueSideTimerTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueSideTimerTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueSideTimerTexteColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor name: SetBlueTeamNameColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueTeamNameColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueTeamNameColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor* name: SetBlueTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueTeamNameColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor name: SetBlueTeamSubtextColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueTeamSubtextColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueTeamSubtextColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor* name: SetBlueTeamSubtextColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetBlueTeamSubtextColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetBlueTeamSubtextColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetBlueTeamSubtextColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor name: SetRedSideBackgroudColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideBackgroudColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideBackgroudColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor* name: SetRedSideBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideBackgroudColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor name: SetRedSideBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor* name: SetRedSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor name: SetRedSideTexteColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTexteColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTexteColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor* name: SetRedSideTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTexteColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor name: SetRedSideTimerBackgroudColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBackgroudColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBackgroudColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor* name: SetRedSideTimerBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBackgroudColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor name: SetRedSideTimerBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor* name: SetRedSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor name: SetRedSideTimerTexteColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerTexteColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerTexteColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor* name: SetRedSideTimerTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedSideTimerTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedSideTimerTexteColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor name: SetRedTeamNameColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedTeamNameColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedTeamNameColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor* name: SetRedTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedTeamNameColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor name: SetRedTeamSubtextColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedTeamSubtextColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedTeamSubtextColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor() nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor* name: SetRedTeamSubtextColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SetRedTeamSubtextColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SetRedTeamSubtextColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor nameWithType: ChampSelectPage.TextValueOverlayView1.SetRedTeamSubtextColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue name: SwitchSideRedBlue() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SwitchSideRedBlue - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue() nameWithType: ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue* name: SwitchSideRedBlue - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_SwitchSideRedBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue nameWithType: ChampSelectPage.TextValueOverlayView1.SwitchSideRedBlue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor name: TempsBlueSideBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsBlueSideBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsBlueSideBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor* name: TempsBlueSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsBlueSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsBlueSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.TempsBlueSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor name: TempsBlueSideTimerBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsBlueSideTimerBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsBlueSideTimerBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor* name: TempsBlueSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsBlueSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsBlueSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.TempsBlueSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor name: TempsRedSideBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsRedSideBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsRedSideBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor* name: TempsRedSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsRedSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsRedSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.TempsRedSideBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor name: TempsRedSideTimerBorderColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsRedSideTimerBorderColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsRedSideTimerBorderColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor() nameWithType: ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor* name: TempsRedSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView1_TempsRedSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView1_TempsRedSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor nameWithType: ChampSelectPage.TextValueOverlayView1.TempsRedSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2 name: ChampSelectPage.TextValueOverlayView2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html - commentId: T:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2 nameWithType: ChampSelectPage.TextValueOverlayView2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView2.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView2.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit name: BlueSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_BlueSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_BlueSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit* name: BlueSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_BlueSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_BlueSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView2.BlueSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.EnableTimer +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.EnableTimer name: EnableTimer - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_EnableTimer - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.EnableTimer - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.EnableTimer + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_EnableTimer + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.EnableTimer + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.EnableTimer nameWithType: ChampSelectPage.TextValueOverlayView2.EnableTimer -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.EnableTimer* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.EnableTimer* name: EnableTimer - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_EnableTimer_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.EnableTimer + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_EnableTimer_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.EnableTimer isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.EnableTimer + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.EnableTimer nameWithType: ChampSelectPage.TextValueOverlayView2.EnableTimer -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorDeg - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorDeg + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg* name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorDeg_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorDeg_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent1 - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1* name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent1_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent2 - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2* name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent2_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorPercent2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit name: KeystonePickColorSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit() nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit* name: KeystonePickColorSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_KeystonePickColorSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_KeystonePickColorSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit nameWithType: ChampSelectPage.TextValueOverlayView2.KeystonePickColorSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView2.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView2.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit name: RedSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_RedSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_RedSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit* name: RedSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_RedSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_RedSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView2.RedSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor name: SetBanBackgroundColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBanBackgroundColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBanBackgroundColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor() nameWithType: ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor* name: SetBanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBanBackgroundColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBanBackgroundColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor nameWithType: ChampSelectPage.TextValueOverlayView2.SetBanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud name: SetBlueSideBackgroud() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroud - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroud + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud() nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud* name: SetBlueSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroud -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick name: SetBlueSideBackgroudSummonerPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick() nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick* name: SetBlueSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd name: SetBlueSideBackgroudSummonerPickEnd() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPickEnd - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPickEnd + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd() nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd* name: SetBlueSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner name: SetBlueSideSummoner() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideSummoner - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideSummoner + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner() nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner* name: SetBlueSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideSummoner -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor name: SetBlueSideTeamNameColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideTeamNameColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideTeamNameColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor() nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor* name: SetBlueSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetBlueSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetBlueSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor nameWithType: ChampSelectPage.TextValueOverlayView2.SetBlueSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 name: SetKeystoneColor1() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor1 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor1 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1() nameWithType: ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1* name: SetKeystoneColor1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor1_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 nameWithType: ChampSelectPage.TextValueOverlayView2.SetKeystoneColor1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 name: SetKeystoneColor2() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor2 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor2 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2() nameWithType: ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2* name: SetKeystoneColor2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor2_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetKeystoneColor2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 nameWithType: ChampSelectPage.TextValueOverlayView2.SetKeystoneColor2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud name: SetRedSideBackgroud() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroud - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroud + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud() nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud* name: SetRedSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroud -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick name: SetRedSideBackgroudSummonerPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick() nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick* name: SetRedSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd name: SetRedSideBackgroudSummonerPickEnd() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPickEnd - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPickEnd + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd() nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd* name: SetRedSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner name: SetRedSideSummoner() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideSummoner - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideSummoner + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner() nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner* name: SetRedSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideSummoner -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor name: SetRedSideTeamNameColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideTeamNameColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideTeamNameColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor() nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor* name: SetRedSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetRedSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetRedSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor nameWithType: ChampSelectPage.TextValueOverlayView2.SetRedSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBackground name: SetTimerBackground() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetTimerBackground - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBackground - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBackground() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetTimerBackground + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBackground() nameWithType: ChampSelectPage.TextValueOverlayView2.SetTimerBackground() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBackground* name: SetTimerBackground - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetTimerBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetTimerBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBackground nameWithType: ChampSelectPage.TextValueOverlayView2.SetTimerBackground -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBlue name: SetTimerBlue() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetTimerBlue - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBlue - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBlue() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetTimerBlue + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBlue() nameWithType: ChampSelectPage.TextValueOverlayView2.SetTimerBlue() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBlue* name: SetTimerBlue - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetTimerBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetTimerBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerBlue nameWithType: ChampSelectPage.TextValueOverlayView2.SetTimerBlue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerRed +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerRed name: SetTimerRed() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetTimerRed - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerRed - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerRed() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetTimerRed + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerRed() nameWithType: ChampSelectPage.TextValueOverlayView2.SetTimerRed() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerRed* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerRed* name: SetTimerRed - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SetTimerRed_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerRed + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SetTimerRed_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerRed isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SetTimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SetTimerRed nameWithType: ChampSelectPage.TextValueOverlayView2.SetTimerRed -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue name: SwitchSideRedBlue() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SwitchSideRedBlue - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue() nameWithType: ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue* name: SwitchSideRedBlue - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_SwitchSideRedBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue nameWithType: ChampSelectPage.TextValueOverlayView2.SwitchSideRedBlue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.TimerSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.TimerSubmit name: TimerSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_TimerSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.TimerSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.TimerSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_TimerSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.TimerSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.TimerSubmit() nameWithType: ChampSelectPage.TextValueOverlayView2.TimerSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.TimerSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.TimerSubmit* name: TimerSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView2_TimerSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.TimerSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView2_TimerSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.TimerSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView2.TimerSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView2.TimerSubmit nameWithType: ChampSelectPage.TextValueOverlayView2.TimerSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3 name: ChampSelectPage.TextValueOverlayView3 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html - commentId: T:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3 nameWithType: ChampSelectPage.TextValueOverlayView3 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView3.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView3.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit name: BlueSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_BlueSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_BlueSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit* name: BlueSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_BlueSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_BlueSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView3.BlueSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.EnableTimer +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.EnableTimer name: EnableTimer - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_EnableTimer - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.EnableTimer - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.EnableTimer + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_EnableTimer + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.EnableTimer + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.EnableTimer nameWithType: ChampSelectPage.TextValueOverlayView3.EnableTimer -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.EnableTimer* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.EnableTimer* name: EnableTimer - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_EnableTimer_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.EnableTimer + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_EnableTimer_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.EnableTimer isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.EnableTimer + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.EnableTimer nameWithType: ChampSelectPage.TextValueOverlayView3.EnableTimer -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorDeg - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorDeg + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg* name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorDeg_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorDeg_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent1 - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1* name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent1_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent2 - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2* name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent2_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorPercent2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit name: KeystonePickColorSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit() nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit* name: KeystonePickColorSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_KeystonePickColorSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_KeystonePickColorSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit nameWithType: ChampSelectPage.TextValueOverlayView3.KeystonePickColorSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView3.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView3.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit name: RedSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_RedSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_RedSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit* name: RedSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_RedSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_RedSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView3.RedSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor name: SetBanBackgroundColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBanBackgroundColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBanBackgroundColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor() nameWithType: ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor* name: SetBanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBanBackgroundColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBanBackgroundColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor nameWithType: ChampSelectPage.TextValueOverlayView3.SetBanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud name: SetBlueSideBackgroud() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroud - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroud + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud() nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud* name: SetBlueSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroud -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick name: SetBlueSideBackgroudSummonerPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick() nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick* name: SetBlueSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd name: SetBlueSideBackgroudSummonerPickEnd() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPickEnd - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPickEnd + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd() nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd* name: SetBlueSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner name: SetBlueSideSummoner() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideSummoner - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideSummoner + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner() nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner* name: SetBlueSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideSummoner -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor name: SetBlueSideTeamNameColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideTeamNameColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideTeamNameColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor() nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor* name: SetBlueSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetBlueSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetBlueSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor nameWithType: ChampSelectPage.TextValueOverlayView3.SetBlueSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 name: SetKeystoneColor1() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor1 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor1 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1() nameWithType: ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1* name: SetKeystoneColor1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor1_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 nameWithType: ChampSelectPage.TextValueOverlayView3.SetKeystoneColor1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 name: SetKeystoneColor2() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor2 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor2 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2() nameWithType: ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2* name: SetKeystoneColor2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor2_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetKeystoneColor2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 nameWithType: ChampSelectPage.TextValueOverlayView3.SetKeystoneColor2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud name: SetRedSideBackgroud() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroud - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroud + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud() nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud* name: SetRedSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroud -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick name: SetRedSideBackgroudSummonerPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick() nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick* name: SetRedSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd name: SetRedSideBackgroudSummonerPickEnd() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPickEnd - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPickEnd + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd() nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd* name: SetRedSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner name: SetRedSideSummoner() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideSummoner - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideSummoner + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner() nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner* name: SetRedSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideSummoner -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor name: SetRedSideTeamNameColor() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideTeamNameColor - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideTeamNameColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor() nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor* name: SetRedSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetRedSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetRedSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor nameWithType: ChampSelectPage.TextValueOverlayView3.SetRedSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBackground name: SetTimerBackground() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetTimerBackground - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBackground - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBackground() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetTimerBackground + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBackground() nameWithType: ChampSelectPage.TextValueOverlayView3.SetTimerBackground() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBackground* name: SetTimerBackground - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetTimerBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetTimerBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBackground nameWithType: ChampSelectPage.TextValueOverlayView3.SetTimerBackground -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBlue name: SetTimerBlue() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetTimerBlue - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBlue - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBlue() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetTimerBlue + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBlue() nameWithType: ChampSelectPage.TextValueOverlayView3.SetTimerBlue() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBlue* name: SetTimerBlue - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetTimerBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetTimerBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerBlue nameWithType: ChampSelectPage.TextValueOverlayView3.SetTimerBlue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerRed +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerRed name: SetTimerRed() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetTimerRed - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerRed - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerRed() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetTimerRed + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerRed() nameWithType: ChampSelectPage.TextValueOverlayView3.SetTimerRed() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerRed* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerRed* name: SetTimerRed - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SetTimerRed_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerRed + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SetTimerRed_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerRed isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SetTimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SetTimerRed nameWithType: ChampSelectPage.TextValueOverlayView3.SetTimerRed -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue name: SwitchSideRedBlue() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SwitchSideRedBlue - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue() nameWithType: ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue* name: SwitchSideRedBlue - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_SwitchSideRedBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue nameWithType: ChampSelectPage.TextValueOverlayView3.SwitchSideRedBlue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.TimerSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.TimerSubmit name: TimerSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_TimerSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.TimerSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.TimerSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_TimerSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.TimerSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.TimerSubmit() nameWithType: ChampSelectPage.TextValueOverlayView3.TimerSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.TimerSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.TimerSubmit* name: TimerSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView3_TimerSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.TimerSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView3_TimerSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.TimerSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView3.TimerSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView3.TimerSubmit nameWithType: ChampSelectPage.TextValueOverlayView3.TimerSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4 name: ChampSelectPage.TextValueOverlayView4 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html - commentId: T:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4 nameWithType: ChampSelectPage.TextValueOverlayView4 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg name: BackgroudGradientDeg - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientDeg - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientDeg + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg* name: BackgroudGradientDeg - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientDeg_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientDeg_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientDeg -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 name: BackgroudGradientPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent1 - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1* name: BackgroudGradientPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent1_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 name: BackgroudGradientPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent2 - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2* name: BackgroudGradientPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent2_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientPercent2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientPercent2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 name: BackgroudGradientView4() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientView4 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientView4 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4() nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4* name: BackgroudGradientView4 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BackgroudGradientView4_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BackgroudGradientView4_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 nameWithType: ChampSelectPage.TextValueOverlayView4.BackgroudGradientView4 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan name: BlueSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBan - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBan + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan* name: BlueSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet name: BlueSideBorderColorBanNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBanNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBanNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit name: BlueSideBorderColorBanSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBanSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBanSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit* name: BlueSideBorderColorBanSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBanSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorBanSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorBanSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick name: BlueSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPick - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick* name: BlueSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet name: BlueSideBorderColorPickNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPickNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPickNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit name: BlueSideBorderColorPickSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPickSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPickSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit* name: BlueSideBorderColorPickSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPickSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideBorderColorPickSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideBorderColorPickSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit name: BlueSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit* name: BlueSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext name: BlueSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtext - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext* name: BlueSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit name: BlueSideTeamNameSubtextSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtextSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtextSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit* name: BlueSideTeamNameSubtextSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtextSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BlueSideTeamNameSubtextSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.BlueSideTeamNameSubtextSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel name: BorderBottomPixel - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderBottomPixel - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderBottomPixel + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel nameWithType: ChampSelectPage.TextValueOverlayView4.BorderBottomPixel -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel* name: BorderBottomPixel - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderBottomPixel_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderBottomPixel_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixel nameWithType: ChampSelectPage.TextValueOverlayView4.BorderBottomPixel -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit name: BorderBottomPixelSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderBottomPixelSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderBottomPixelSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit* name: BorderBottomPixelSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderBottomPixelSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderBottomPixelSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.BorderBottomPixelSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTop +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTop name: BorderTop - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderTop - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTop - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTop + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderTop + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTop nameWithType: ChampSelectPage.TextValueOverlayView4.BorderTop -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTop* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTop* name: BorderTop - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderTop_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTop + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderTop_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTop isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTop nameWithType: ChampSelectPage.TextValueOverlayView4.BorderTop -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopNotSet name: BorderTopNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderTopNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderTopNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopNotSet nameWithType: ChampSelectPage.TextValueOverlayView4.BorderTopNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit name: BorderTopSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderTopSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderTopSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.BorderTopSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit* name: BorderTopSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_BorderTopSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_BorderTopSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.BorderTopSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.BorderTopSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground name: EnableForegroundBackground - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_EnableForegroundBackground - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_EnableForegroundBackground + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground nameWithType: ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground* name: EnableForegroundBackground - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_EnableForegroundBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_EnableForegroundBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground nameWithType: ChampSelectPage.TextValueOverlayView4.EnableForegroundBackground -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit name: OverlayForegoundSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_OverlayForegoundSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_OverlayForegoundSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit* name: OverlayForegoundSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_OverlayForegoundSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_OverlayForegoundSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.OverlayForegoundSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan name: RedSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBan - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBan + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan* name: RedSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet name: RedSideBorderColorBanNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBanNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBanNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit name: RedSideBorderColorBanSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBanSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBanSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit* name: RedSideBorderColorBanSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBanSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorBanSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorBanSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick name: RedSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPick - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick* name: RedSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet name: RedSideBorderColorPickNotSet - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPickNotSet - commentId: F:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPickNotSet + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickNotSet -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit name: RedSideBorderColorPickSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPickSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPickSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit* name: RedSideBorderColorPickSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPickSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideBorderColorPickSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideBorderColorPickSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamName nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit name: RedSideTeamNameSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit* name: RedSideTeamNameSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext name: RedSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtext - commentId: P:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext* name: RedSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit name: RedSideTeamNameSubtextSubmit() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtextSubmit - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtextSubmit + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit() nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit* name: RedSideTeamNameSubtextSubmit - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtextSubmit_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_RedSideTeamNameSubtextSubmit_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit nameWithType: ChampSelectPage.TextValueOverlayView4.RedSideTeamNameSubtextSubmit -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 name: SetBackgroudGradientColor1() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor1 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor1 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1* name: SetBackgroudGradientColor1 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor1_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 nameWithType: ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor1 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 name: SetBackgroudGradientColor2() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor2 - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor2 + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2* name: SetBackgroudGradientColor2 - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor2_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBackgroudGradientColor2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 nameWithType: ChampSelectPage.TextValueOverlayView4.SetBackgroudGradientColor2 -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan name: SetBlueSideBorderColorBan() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorBan - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorBan + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan* name: SetBlueSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick name: SetBlueSideBorderColorPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick* name: SetBlueSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText name: SetBlueSideColorSubText() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorSubText - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorSubText + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText* name: SetBlueSideColorSubText - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorSubText_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorSubText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorSubText -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText name: SetBlueSideColorText() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorText - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorText + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText* name: SetBlueSideColorText - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorText_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorText -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan name: SetBlueSideColorTextBan() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextBan - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextBan + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan* name: SetBlueSideColorTextBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick name: SetBlueSideColorTextPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick* name: SetBlueSideColorTextPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBlueSideColorTextPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick nameWithType: ChampSelectPage.TextValueOverlayView4.SetBlueSideColorTextPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBorderTop +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBorderTop name: SetBorderTop() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBorderTop - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBorderTop - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBorderTop() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBorderTop + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBorderTop() nameWithType: ChampSelectPage.TextValueOverlayView4.SetBorderTop() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBorderTop* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBorderTop* name: SetBorderTop - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetBorderTop_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBorderTop + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetBorderTop_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBorderTop isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetBorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetBorderTop nameWithType: ChampSelectPage.TextValueOverlayView4.SetBorderTop -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan name: SetRedSideBorderColorBan() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorBan - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorBan + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan() nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan* name: SetRedSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick name: SetRedSideBorderColorPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick() nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick* name: SetRedSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText name: SetRedSideColorSubText() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorSubText - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorSubText + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText() nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText* name: SetRedSideColorSubText - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorSubText_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorSubText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorSubText -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText name: SetRedSideColorText() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorText - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorText + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText() nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorText() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText* name: SetRedSideColorText - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorText_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorText nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorText -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan name: SetRedSideColorTextBan() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextBan - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextBan + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan() nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan* name: SetRedSideColorTextBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick name: SetRedSideColorTextPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick() nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick* name: SetRedSideColorTextPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SetRedSideColorTextPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick nameWithType: ChampSelectPage.TextValueOverlayView4.SetRedSideColorTextPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue name: SwitchSideRedBlue() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SwitchSideRedBlue - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue() nameWithType: ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue* name: SwitchSideRedBlue - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_SwitchSideRedBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue nameWithType: ChampSelectPage.TextValueOverlayView4.SwitchSideRedBlue -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan name: TempsBlueSideBorderColorBan() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorBan - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorBan + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan() nameWithType: ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan* name: TempsBlueSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick name: TempsBlueSideBorderColorPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick() nameWithType: ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick* name: TempsBlueSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsBlueSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.TempsBlueSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBorderTop +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBorderTop name: TempsBorderTop() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsBorderTop - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBorderTop - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBorderTop() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsBorderTop + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBorderTop() nameWithType: ChampSelectPage.TextValueOverlayView4.TempsBorderTop() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBorderTop* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBorderTop* name: TempsBorderTop - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsBorderTop_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBorderTop + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsBorderTop_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBorderTop isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsBorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsBorderTop nameWithType: ChampSelectPage.TextValueOverlayView4.TempsBorderTop -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan name: TempsRedSideBorderColorBan() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorBan - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorBan + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan() nameWithType: ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan* name: TempsRedSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan nameWithType: ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick name: TempsRedSideBorderColorPick() - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorPick - commentId: M:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorPick + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick() nameWithType: ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick() -- uid: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick* name: TempsRedSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.html#OSL_Server_Pages_ChampSelect_ChampSelectPage_TextValueOverlayView4_TempsRedSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick nameWithType: ChampSelectPage.TextValueOverlayView4.TempsRedSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectView1Page +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page name: ChampSelectView1Page - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html - commentId: T:OSL_Server.Pages.ChampSelectView1Page - fullName: OSL_Server.Pages.ChampSelectView1Page + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView1Page + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page nameWithType: ChampSelectView1Page -- uid: OSL_Server.Pages.ChampSelectView1Page.EnableOrDisableOverlayView +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.EnableOrDisableOverlayView name: EnableOrDisableOverlayView() - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelectView1Page_EnableOrDisableOverlayView - commentId: M:OSL_Server.Pages.ChampSelectView1Page.EnableOrDisableOverlayView - fullName: OSL_Server.Pages.ChampSelectView1Page.EnableOrDisableOverlayView() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_EnableOrDisableOverlayView + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.EnableOrDisableOverlayView() nameWithType: ChampSelectView1Page.EnableOrDisableOverlayView() -- uid: OSL_Server.Pages.ChampSelectView1Page.EnableOrDisableOverlayView* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.EnableOrDisableOverlayView* name: EnableOrDisableOverlayView - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelectView1Page_EnableOrDisableOverlayView_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.EnableOrDisableOverlayView + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_EnableOrDisableOverlayView_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.EnableOrDisableOverlayView isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.EnableOrDisableOverlayView nameWithType: ChampSelectView1Page.EnableOrDisableOverlayView -- uid: OSL_Server.Pages.ChampSelectView1Page.formatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelectView1Page_formatingData - commentId: F:OSL_Server.Pages.ChampSelectView1Page.formatingData - fullName: OSL_Server.Pages.ChampSelectView1Page.formatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_formatingData + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.formatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.formatingData nameWithType: ChampSelectView1Page.formatingData -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData name: ChampSelectView1Page.FormatingData - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html - commentId: T:OSL_Server.Pages.ChampSelectView1Page.FormatingData - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData nameWithType: ChampSelectView1Page.FormatingData -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundColor name: BanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BanBackgroundColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BanBackgroundColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundColor nameWithType: ChampSelectView1Page.FormatingData.BanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundColor* name: BanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BanBackgroundColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BanBackgroundColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundColor nameWithType: ChampSelectView1Page.FormatingData.BanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundPicture +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundPicture name: BanBackgroundPicture - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BanBackgroundPicture - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundPicture - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BanBackgroundPicture + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundPicture nameWithType: ChampSelectView1Page.FormatingData.BanBackgroundPicture -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundPicture* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundPicture* name: BanBackgroundPicture - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BanBackgroundPicture_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BanBackgroundPicture_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundPicture isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanBackgroundPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanBackgroundPicture nameWithType: ChampSelectView1Page.FormatingData.BanBackgroundPicture -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanOverlayPicture +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanOverlayPicture name: BanOverlayPicture - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BanOverlayPicture - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanOverlayPicture - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanOverlayPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BanOverlayPicture + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanOverlayPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanOverlayPicture nameWithType: ChampSelectView1Page.FormatingData.BanOverlayPicture -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanOverlayPicture* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanOverlayPicture* name: BanOverlayPicture - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BanOverlayPicture_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanOverlayPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BanOverlayPicture_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanOverlayPicture isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BanOverlayPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BanOverlayPicture nameWithType: ChampSelectView1Page.FormatingData.BanOverlayPicture -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueLogo +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueLogo name: BlueLogo - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueLogo - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueLogo - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueLogo + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueLogo + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueLogo + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueLogo nameWithType: ChampSelectView1Page.FormatingData.BlueLogo -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueLogo* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueLogo* name: BlueLogo - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueLogo_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueLogo + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueLogo_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueLogo isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueLogo + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueLogo nameWithType: ChampSelectView1Page.FormatingData.BlueLogo -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor name: BlueSideBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideBackgroudColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideBackgroudColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor* name: BlueSideBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBorderColor name: BlueSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideBorderColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBorderColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBorderColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBorderColor* name: BlueSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideBorderColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView1Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView1Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTexteColor name: BlueSideTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTexteColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTexteColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTexteColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTexteColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTexteColor* name: BlueSideTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTexteColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor name: BlueSideTimerBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTimerBackgroudColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTimerBackgroudColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor* name: BlueSideTimerBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTimerBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTimerBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTimerBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor name: BlueSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTimerBorderColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTimerBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor* name: BlueSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor name: BlueSideTimerTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTimerTexteColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTimerTexteColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor* name: BlueSideTimerTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueSideTimerTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueSideTimerTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor nameWithType: ChampSelectView1Page.FormatingData.BlueSideTimerTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamNameColor name: BlueTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueTeamNameColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamNameColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueTeamNameColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamNameColor nameWithType: ChampSelectView1Page.FormatingData.BlueTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamNameColor* name: BlueTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamNameColor nameWithType: ChampSelectView1Page.FormatingData.BlueTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtext name: BlueTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueTeamSubtext - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtext - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueTeamSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtext nameWithType: ChampSelectView1Page.FormatingData.BlueTeamSubtext -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtext* name: BlueTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueTeamSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueTeamSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtext nameWithType: ChampSelectView1Page.FormatingData.BlueTeamSubtext -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor name: BlueTeamSubtextColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueTeamSubtextColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueTeamSubtextColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor nameWithType: ChampSelectView1Page.FormatingData.BlueTeamSubtextColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor* name: BlueTeamSubtextColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_BlueTeamSubtextColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_BlueTeamSubtextColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.BlueTeamSubtextColor nameWithType: ChampSelectView1Page.FormatingData.BlueTeamSubtextColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultPatch nameWithType: ChampSelectView1Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultPatch nameWithType: ChampSelectView1Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultRegion nameWithType: ChampSelectView1Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.DefaultRegion nameWithType: ChampSelectView1Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.OverlayBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.OverlayBackground name: OverlayBackground - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_OverlayBackground - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.OverlayBackground - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.OverlayBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_OverlayBackground + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.OverlayBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.OverlayBackground nameWithType: ChampSelectView1Page.FormatingData.OverlayBackground -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.OverlayBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.OverlayBackground* name: OverlayBackground - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_OverlayBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.OverlayBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_OverlayBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.OverlayBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.OverlayBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.OverlayBackground nameWithType: ChampSelectView1Page.FormatingData.OverlayBackground -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedLogo +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedLogo name: RedLogo - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedLogo - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedLogo - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedLogo + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedLogo + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedLogo + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedLogo nameWithType: ChampSelectView1Page.FormatingData.RedLogo -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedLogo* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedLogo* name: RedLogo - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedLogo_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedLogo + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedLogo_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedLogo isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedLogo + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedLogo nameWithType: ChampSelectView1Page.FormatingData.RedLogo -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBackgroudColor name: RedSideBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideBackgroudColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBackgroudColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideBackgroudColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.RedSideBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBackgroudColor* name: RedSideBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.RedSideBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBorderColor name: RedSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideBorderColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBorderColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBorderColor nameWithType: ChampSelectView1Page.FormatingData.RedSideBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBorderColor* name: RedSideBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideBorderColor nameWithType: ChampSelectView1Page.FormatingData.RedSideBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView1Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView1Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTexteColor name: RedSideTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTexteColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTexteColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTexteColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTexteColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTexteColor* name: RedSideTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTexteColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor name: RedSideTimerBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTimerBackgroudColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTimerBackgroudColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor* name: RedSideTimerBackgroudColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTimerBackgroudColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTimerBackgroudColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTimerBackgroudColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor name: RedSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTimerBorderColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTimerBorderColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor* name: RedSideTimerBorderColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTimerBorderColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTimerBorderColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerBorderColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTimerBorderColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor name: RedSideTimerTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTimerTexteColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTimerTexteColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTimerTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor* name: RedSideTimerTexteColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedSideTimerTexteColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedSideTimerTexteColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedSideTimerTexteColor nameWithType: ChampSelectView1Page.FormatingData.RedSideTimerTexteColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamNameColor name: RedTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedTeamNameColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamNameColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedTeamNameColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamNameColor nameWithType: ChampSelectView1Page.FormatingData.RedTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamNameColor* name: RedTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamNameColor nameWithType: ChampSelectView1Page.FormatingData.RedTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtext name: RedTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedTeamSubtext - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtext - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedTeamSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtext nameWithType: ChampSelectView1Page.FormatingData.RedTeamSubtext -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtext* name: RedTeamSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedTeamSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedTeamSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtext nameWithType: ChampSelectView1Page.FormatingData.RedTeamSubtext -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtextColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtextColor name: RedTeamSubtextColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedTeamSubtextColor - commentId: P:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtextColor - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtextColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedTeamSubtextColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtextColor nameWithType: ChampSelectView1Page.FormatingData.RedTeamSubtextColor -- uid: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtextColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtextColor* name: RedTeamSubtextColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelectView1Page_FormatingData_RedTeamSubtextColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtextColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_FormatingData_RedTeamSubtextColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtextColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.FormatingData.RedTeamSubtextColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.FormatingData.RedTeamSubtextColor nameWithType: ChampSelectView1Page.FormatingData.RedTeamSubtextColor -- uid: OSL_Server.Pages.ChampSelectView1Page.overlayLoaded +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.overlayLoaded name: overlayLoaded - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelectView1Page_overlayLoaded - commentId: F:OSL_Server.Pages.ChampSelectView1Page.overlayLoaded - fullName: OSL_Server.Pages.ChampSelectView1Page.overlayLoaded + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_overlayLoaded + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.overlayLoaded + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.overlayLoaded nameWithType: ChampSelectView1Page.overlayLoaded -- uid: OSL_Server.Pages.ChampSelectView1Page.ResetColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelectView1Page_ResetColor - commentId: M:OSL_Server.Pages.ChampSelectView1Page.ResetColor - fullName: OSL_Server.Pages.ChampSelectView1Page.ResetColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_ResetColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.ResetColor() nameWithType: ChampSelectView1Page.ResetColor() -- uid: OSL_Server.Pages.ChampSelectView1Page.ResetColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelectView1Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView1Page.ResetColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView1Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView1Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView1Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView1Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView1Page.ResetColor nameWithType: ChampSelectView1Page.ResetColor -- uid: OSL_Server.Pages.ChampSelectView2Page +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page name: ChampSelectView2Page - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html - commentId: T:OSL_Server.Pages.ChampSelectView2Page - fullName: OSL_Server.Pages.ChampSelectView2Page + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView2Page + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page nameWithType: ChampSelectView2Page -- uid: OSL_Server.Pages.ChampSelectView2Page.EnableOrDisableOverlayView +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.EnableOrDisableOverlayView name: EnableOrDisableOverlayView() - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelectView2Page_EnableOrDisableOverlayView - commentId: M:OSL_Server.Pages.ChampSelectView2Page.EnableOrDisableOverlayView - fullName: OSL_Server.Pages.ChampSelectView2Page.EnableOrDisableOverlayView() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_EnableOrDisableOverlayView + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.EnableOrDisableOverlayView() nameWithType: ChampSelectView2Page.EnableOrDisableOverlayView() -- uid: OSL_Server.Pages.ChampSelectView2Page.EnableOrDisableOverlayView* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.EnableOrDisableOverlayView* name: EnableOrDisableOverlayView - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelectView2Page_EnableOrDisableOverlayView_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.EnableOrDisableOverlayView + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_EnableOrDisableOverlayView_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.EnableOrDisableOverlayView isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.EnableOrDisableOverlayView nameWithType: ChampSelectView2Page.EnableOrDisableOverlayView -- uid: OSL_Server.Pages.ChampSelectView2Page.formatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelectView2Page_formatingData - commentId: F:OSL_Server.Pages.ChampSelectView2Page.formatingData - fullName: OSL_Server.Pages.ChampSelectView2Page.formatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_formatingData + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.formatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.formatingData nameWithType: ChampSelectView2Page.formatingData -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData name: ChampSelectView2Page.FormatingData - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html - commentId: T:OSL_Server.Pages.ChampSelectView2Page.FormatingData - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData nameWithType: ChampSelectView2Page.FormatingData -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColor name: BanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanBackgroundColor - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColor - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanBackgroundColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColor nameWithType: ChampSelectView2Page.FormatingData.BanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColor* name: BanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanBackgroundColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanBackgroundColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColor nameWithType: ChampSelectView2Page.FormatingData.BanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColorSave +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColorSave name: BanBackgroundColorSave - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanBackgroundColorSave - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColorSave - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColorSave + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanBackgroundColorSave + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColorSave + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColorSave nameWithType: ChampSelectView2Page.FormatingData.BanBackgroundColorSave -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColorSave* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColorSave* name: BanBackgroundColorSave - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanBackgroundColorSave_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColorSave + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanBackgroundColorSave_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColorSave isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundColorSave + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundColorSave nameWithType: ChampSelectView2Page.FormatingData.BanBackgroundColorSave -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundPicture +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundPicture name: BanBackgroundPicture - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanBackgroundPicture - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundPicture - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanBackgroundPicture + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundPicture nameWithType: ChampSelectView2Page.FormatingData.BanBackgroundPicture -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundPicture* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundPicture* name: BanBackgroundPicture - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanBackgroundPicture_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanBackgroundPicture_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundPicture isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanBackgroundPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanBackgroundPicture nameWithType: ChampSelectView2Page.FormatingData.BanBackgroundPicture -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanOverlayPicture +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanOverlayPicture name: BanOverlayPicture - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanOverlayPicture - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanOverlayPicture - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanOverlayPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanOverlayPicture + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanOverlayPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanOverlayPicture nameWithType: ChampSelectView2Page.FormatingData.BanOverlayPicture -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanOverlayPicture* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanOverlayPicture* name: BanOverlayPicture - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BanOverlayPicture_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanOverlayPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BanOverlayPicture_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanOverlayPicture isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BanOverlayPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BanOverlayPicture nameWithType: ChampSelectView2Page.FormatingData.BanOverlayPicture -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroud name: BlueSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBackgroud - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroud - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBackgroud + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroud nameWithType: ChampSelectView2Page.FormatingData.BlueSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroud* name: BlueSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroud nameWithType: ChampSelectView2Page.FormatingData.BlueSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick name: BlueSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPick - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick nameWithType: ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick* name: BlueSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick nameWithType: ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd name: BlueSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPickEnd - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPickEnd + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd nameWithType: ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd* name: BlueSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd nameWithType: ChampSelectView2Page.FormatingData.BlueSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBlink +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBlink name: BlueSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBlink - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBlink - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBlink + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBlink nameWithType: ChampSelectView2Page.FormatingData.BlueSideBlink -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBlink* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBlink* name: BlueSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideBlink_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideBlink_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBlink isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideBlink nameWithType: ChampSelectView2Page.FormatingData.BlueSideBlink -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideSummoner name: BlueSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideSummoner - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideSummoner - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideSummoner + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideSummoner nameWithType: ChampSelectView2Page.FormatingData.BlueSideSummoner -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideSummoner* name: BlueSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideSummoner nameWithType: ChampSelectView2Page.FormatingData.BlueSideSummoner -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView2Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView2Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor name: BlueSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideTeamNameColor - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideTeamNameColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor nameWithType: ChampSelectView2Page.FormatingData.BlueSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor* name: BlueSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameColor nameWithType: ChampSelectView2Page.FormatingData.BlueSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize name: BlueSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideTeamNameSize - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideTeamNameSize + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize nameWithType: ChampSelectView2Page.FormatingData.BlueSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize* name: BlueSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_BlueSideTeamNameSize_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_BlueSideTeamNameSize_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.BlueSideTeamNameSize nameWithType: ChampSelectView2Page.FormatingData.BlueSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultPatch nameWithType: ChampSelectView2Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultPatch nameWithType: ChampSelectView2Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultRegion nameWithType: ChampSelectView2Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.DefaultRegion nameWithType: ChampSelectView2Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor name: KeystonePickColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColor - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor* name: KeystonePickColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor1 name: KeystonePickColor1 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColor1 - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor1 - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColor1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor1 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColor1 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor1* name: KeystonePickColor1 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColor1_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColor1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor1 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColor1 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor2 name: KeystonePickColor2 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColor2 - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor2 - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColor2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor2 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColor2 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor2* name: KeystonePickColor2 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColor2_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColor2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColor2 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColor2 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorDeg +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorDeg name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColorDeg - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorDeg - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColorDeg + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorDeg nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorDeg* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorDeg* name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColorDeg_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColorDeg_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorDeg isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorDeg nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColorPercent1 - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColorPercent1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1* name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColorPercent1_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColorPercent1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColorPercent2 - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColorPercent2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2* name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_KeystonePickColorPercent2_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_KeystonePickColorPercent2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 nameWithType: ChampSelectView2Page.FormatingData.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroud name: RedSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBackgroud - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroud - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBackgroud + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroud nameWithType: ChampSelectView2Page.FormatingData.RedSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroud* name: RedSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroud nameWithType: ChampSelectView2Page.FormatingData.RedSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick name: RedSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPick - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick nameWithType: ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick* name: RedSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick nameWithType: ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd name: RedSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPickEnd - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPickEnd + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd nameWithType: ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd* name: RedSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd nameWithType: ChampSelectView2Page.FormatingData.RedSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBlink +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBlink name: RedSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBlink - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBlink - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBlink + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBlink nameWithType: ChampSelectView2Page.FormatingData.RedSideBlink -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBlink* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBlink* name: RedSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideBlink_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideBlink_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBlink isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideBlink nameWithType: ChampSelectView2Page.FormatingData.RedSideBlink -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideSummoner name: RedSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideSummoner - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideSummoner - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideSummoner + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideSummoner nameWithType: ChampSelectView2Page.FormatingData.RedSideSummoner -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideSummoner* name: RedSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideSummoner nameWithType: ChampSelectView2Page.FormatingData.RedSideSummoner -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView2Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView2Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameColor name: RedSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideTeamNameColor - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideTeamNameColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameColor nameWithType: ChampSelectView2Page.FormatingData.RedSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameColor* name: RedSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameColor nameWithType: ChampSelectView2Page.FormatingData.RedSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameSize +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameSize name: RedSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideTeamNameSize - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameSize - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideTeamNameSize + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameSize nameWithType: ChampSelectView2Page.FormatingData.RedSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameSize* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameSize* name: RedSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_RedSideTeamNameSize_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_RedSideTeamNameSize_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameSize isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.RedSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.RedSideTeamNameSize nameWithType: ChampSelectView2Page.FormatingData.RedSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBackground name: TimerBackground - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerBackground - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBackground - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerBackground + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBackground nameWithType: ChampSelectView2Page.FormatingData.TimerBackground -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBackground* name: TimerBackground - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBackground nameWithType: ChampSelectView2Page.FormatingData.TimerBackground -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBlue name: TimerBlue - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerBlue - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBlue - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerBlue + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBlue nameWithType: ChampSelectView2Page.FormatingData.TimerBlue -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBlue* name: TimerBlue - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerBlue nameWithType: ChampSelectView2Page.FormatingData.TimerBlue -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerEnd name: TimerEnd - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerEnd - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerEnd - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerEnd + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerEnd nameWithType: ChampSelectView2Page.FormatingData.TimerEnd -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerEnd* name: TimerEnd - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerEnd nameWithType: ChampSelectView2Page.FormatingData.TimerEnd -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerRed +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerRed name: TimerRed - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerRed - commentId: P:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerRed - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerRed + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerRed + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerRed nameWithType: ChampSelectView2Page.FormatingData.TimerRed -- uid: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerRed* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerRed* name: TimerRed - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelectView2Page_FormatingData_TimerRed_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerRed + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_FormatingData_TimerRed_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerRed isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.FormatingData.TimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.FormatingData.TimerRed nameWithType: ChampSelectView2Page.FormatingData.TimerRed -- uid: OSL_Server.Pages.ChampSelectView2Page.overlayLoaded +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.overlayLoaded name: overlayLoaded - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelectView2Page_overlayLoaded - commentId: F:OSL_Server.Pages.ChampSelectView2Page.overlayLoaded - fullName: OSL_Server.Pages.ChampSelectView2Page.overlayLoaded + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_overlayLoaded + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.overlayLoaded + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.overlayLoaded nameWithType: ChampSelectView2Page.overlayLoaded -- uid: OSL_Server.Pages.ChampSelectView2Page.ResetColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelectView2Page_ResetColor - commentId: M:OSL_Server.Pages.ChampSelectView2Page.ResetColor - fullName: OSL_Server.Pages.ChampSelectView2Page.ResetColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_ResetColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.ResetColor() nameWithType: ChampSelectView2Page.ResetColor() -- uid: OSL_Server.Pages.ChampSelectView2Page.ResetColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelectView2Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView2Page.ResetColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView2Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView2Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView2Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView2Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView2Page.ResetColor nameWithType: ChampSelectView2Page.ResetColor -- uid: OSL_Server.Pages.ChampSelectView3Page +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page name: ChampSelectView3Page - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html - commentId: T:OSL_Server.Pages.ChampSelectView3Page - fullName: OSL_Server.Pages.ChampSelectView3Page + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView3Page + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page nameWithType: ChampSelectView3Page -- uid: OSL_Server.Pages.ChampSelectView3Page.EnableOrDisableOverlayView +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.EnableOrDisableOverlayView name: EnableOrDisableOverlayView() - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelectView3Page_EnableOrDisableOverlayView - commentId: M:OSL_Server.Pages.ChampSelectView3Page.EnableOrDisableOverlayView - fullName: OSL_Server.Pages.ChampSelectView3Page.EnableOrDisableOverlayView() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_EnableOrDisableOverlayView + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.EnableOrDisableOverlayView() nameWithType: ChampSelectView3Page.EnableOrDisableOverlayView() -- uid: OSL_Server.Pages.ChampSelectView3Page.EnableOrDisableOverlayView* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.EnableOrDisableOverlayView* name: EnableOrDisableOverlayView - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelectView3Page_EnableOrDisableOverlayView_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.EnableOrDisableOverlayView + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_EnableOrDisableOverlayView_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.EnableOrDisableOverlayView isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.EnableOrDisableOverlayView nameWithType: ChampSelectView3Page.EnableOrDisableOverlayView -- uid: OSL_Server.Pages.ChampSelectView3Page.formatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelectView3Page_formatingData - commentId: F:OSL_Server.Pages.ChampSelectView3Page.formatingData - fullName: OSL_Server.Pages.ChampSelectView3Page.formatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_formatingData + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.formatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.formatingData nameWithType: ChampSelectView3Page.formatingData -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData name: ChampSelectView3Page.FormatingData - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html - commentId: T:OSL_Server.Pages.ChampSelectView3Page.FormatingData - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData nameWithType: ChampSelectView3Page.FormatingData -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColor name: BanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanBackgroundColor - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColor - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanBackgroundColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColor nameWithType: ChampSelectView3Page.FormatingData.BanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColor* name: BanBackgroundColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanBackgroundColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanBackgroundColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColor nameWithType: ChampSelectView3Page.FormatingData.BanBackgroundColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColorSave +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColorSave name: BanBackgroundColorSave - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanBackgroundColorSave - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColorSave - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColorSave + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanBackgroundColorSave + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColorSave + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColorSave nameWithType: ChampSelectView3Page.FormatingData.BanBackgroundColorSave -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColorSave* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColorSave* name: BanBackgroundColorSave - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanBackgroundColorSave_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColorSave + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanBackgroundColorSave_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColorSave isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundColorSave + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundColorSave nameWithType: ChampSelectView3Page.FormatingData.BanBackgroundColorSave -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundPicture +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundPicture name: BanBackgroundPicture - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanBackgroundPicture - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundPicture - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanBackgroundPicture + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundPicture nameWithType: ChampSelectView3Page.FormatingData.BanBackgroundPicture -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundPicture* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundPicture* name: BanBackgroundPicture - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanBackgroundPicture_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanBackgroundPicture_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundPicture isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanBackgroundPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanBackgroundPicture nameWithType: ChampSelectView3Page.FormatingData.BanBackgroundPicture -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanOverlayPicture +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanOverlayPicture name: BanOverlayPicture - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanOverlayPicture - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanOverlayPicture - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanOverlayPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanOverlayPicture + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanOverlayPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanOverlayPicture nameWithType: ChampSelectView3Page.FormatingData.BanOverlayPicture -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanOverlayPicture* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanOverlayPicture* name: BanOverlayPicture - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BanOverlayPicture_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanOverlayPicture + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BanOverlayPicture_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanOverlayPicture isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BanOverlayPicture + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BanOverlayPicture nameWithType: ChampSelectView3Page.FormatingData.BanOverlayPicture -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroud name: BlueSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBackgroud - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroud - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBackgroud + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroud nameWithType: ChampSelectView3Page.FormatingData.BlueSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroud* name: BlueSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroud nameWithType: ChampSelectView3Page.FormatingData.BlueSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick name: BlueSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPick - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick nameWithType: ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick* name: BlueSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick nameWithType: ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd name: BlueSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPickEnd - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPickEnd + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd nameWithType: ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd* name: BlueSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd nameWithType: ChampSelectView3Page.FormatingData.BlueSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBlink +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBlink name: BlueSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBlink - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBlink - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBlink + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBlink nameWithType: ChampSelectView3Page.FormatingData.BlueSideBlink -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBlink* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBlink* name: BlueSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideBlink_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideBlink_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBlink isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideBlink nameWithType: ChampSelectView3Page.FormatingData.BlueSideBlink -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideSummoner name: BlueSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideSummoner - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideSummoner - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideSummoner + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideSummoner nameWithType: ChampSelectView3Page.FormatingData.BlueSideSummoner -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideSummoner* name: BlueSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideSummoner nameWithType: ChampSelectView3Page.FormatingData.BlueSideSummoner -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView3Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView3Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor name: BlueSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideTeamNameColor - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideTeamNameColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor nameWithType: ChampSelectView3Page.FormatingData.BlueSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor* name: BlueSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameColor nameWithType: ChampSelectView3Page.FormatingData.BlueSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize name: BlueSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideTeamNameSize - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideTeamNameSize + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize nameWithType: ChampSelectView3Page.FormatingData.BlueSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize* name: BlueSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_BlueSideTeamNameSize_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_BlueSideTeamNameSize_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.BlueSideTeamNameSize nameWithType: ChampSelectView3Page.FormatingData.BlueSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultPatch nameWithType: ChampSelectView3Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultPatch nameWithType: ChampSelectView3Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultRegion nameWithType: ChampSelectView3Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.DefaultRegion nameWithType: ChampSelectView3Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor name: KeystonePickColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColor - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor* name: KeystonePickColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor1 name: KeystonePickColor1 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColor1 - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor1 - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColor1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor1 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColor1 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor1* name: KeystonePickColor1 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColor1_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColor1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor1 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColor1 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor2 name: KeystonePickColor2 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColor2 - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor2 - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColor2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor2 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColor2 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor2* name: KeystonePickColor2 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColor2_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColor2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColor2 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColor2 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorDeg +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorDeg name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColorDeg - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorDeg - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColorDeg + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorDeg nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorDeg* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorDeg* name: KeystonePickColorDeg - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColorDeg_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColorDeg_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorDeg isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorDeg nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColorDeg -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColorPercent1 - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColorPercent1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1* name: KeystonePickColorPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColorPercent1_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColorPercent1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColorPercent1 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColorPercent2 - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColorPercent2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2* name: KeystonePickColorPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_KeystonePickColorPercent2_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_KeystonePickColorPercent2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 nameWithType: ChampSelectView3Page.FormatingData.KeystonePickColorPercent2 -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroud +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroud name: RedSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBackgroud - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroud - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBackgroud + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroud nameWithType: ChampSelectView3Page.FormatingData.RedSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroud* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroud* name: RedSideBackgroud - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBackgroud_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroud + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBackgroud_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroud isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroud + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroud nameWithType: ChampSelectView3Page.FormatingData.RedSideBackgroud -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick name: RedSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPick - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick nameWithType: ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick* name: RedSideBackgroudSummonerPick - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick nameWithType: ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPick -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd name: RedSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPickEnd - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPickEnd + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd nameWithType: ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd* name: RedSideBackgroudSummonerPickEnd - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPickEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBackgroudSummonerPickEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd nameWithType: ChampSelectView3Page.FormatingData.RedSideBackgroudSummonerPickEnd -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBlink +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBlink name: RedSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBlink - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBlink - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBlink + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBlink nameWithType: ChampSelectView3Page.FormatingData.RedSideBlink -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBlink* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBlink* name: RedSideBlink - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideBlink_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBlink + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideBlink_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBlink isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideBlink + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideBlink nameWithType: ChampSelectView3Page.FormatingData.RedSideBlink -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideSummoner +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideSummoner name: RedSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideSummoner - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideSummoner - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideSummoner + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideSummoner nameWithType: ChampSelectView3Page.FormatingData.RedSideSummoner -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideSummoner* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideSummoner* name: RedSideSummoner - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideSummoner_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideSummoner + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideSummoner_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideSummoner isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideSummoner + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideSummoner nameWithType: ChampSelectView3Page.FormatingData.RedSideSummoner -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView3Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView3Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameColor name: RedSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideTeamNameColor - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameColor - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideTeamNameColor + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameColor nameWithType: ChampSelectView3Page.FormatingData.RedSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameColor* name: RedSideTeamNameColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideTeamNameColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideTeamNameColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameColor nameWithType: ChampSelectView3Page.FormatingData.RedSideTeamNameColor -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameSize +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameSize name: RedSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideTeamNameSize - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameSize - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideTeamNameSize + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameSize nameWithType: ChampSelectView3Page.FormatingData.RedSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameSize* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameSize* name: RedSideTeamNameSize - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_RedSideTeamNameSize_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameSize + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_RedSideTeamNameSize_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameSize isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.RedSideTeamNameSize + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.RedSideTeamNameSize nameWithType: ChampSelectView3Page.FormatingData.RedSideTeamNameSize -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBackground +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBackground name: TimerBackground - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerBackground - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBackground - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerBackground + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBackground nameWithType: ChampSelectView3Page.FormatingData.TimerBackground -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBackground* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBackground* name: TimerBackground - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerBackground_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBackground + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerBackground_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBackground isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBackground + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBackground nameWithType: ChampSelectView3Page.FormatingData.TimerBackground -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBlue +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBlue name: TimerBlue - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerBlue - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBlue - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerBlue + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBlue nameWithType: ChampSelectView3Page.FormatingData.TimerBlue -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBlue* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBlue* name: TimerBlue - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerBlue_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBlue + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerBlue_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBlue isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerBlue + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerBlue nameWithType: ChampSelectView3Page.FormatingData.TimerBlue -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerEnd +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerEnd name: TimerEnd - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerEnd - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerEnd - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerEnd + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerEnd nameWithType: ChampSelectView3Page.FormatingData.TimerEnd -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerEnd* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerEnd* name: TimerEnd - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerEnd_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerEnd + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerEnd_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerEnd isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerEnd + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerEnd nameWithType: ChampSelectView3Page.FormatingData.TimerEnd -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerRed +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerRed name: TimerRed - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerRed - commentId: P:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerRed - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerRed + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerRed + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerRed nameWithType: ChampSelectView3Page.FormatingData.TimerRed -- uid: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerRed* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerRed* name: TimerRed - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelectView3Page_FormatingData_TimerRed_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerRed + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_FormatingData_TimerRed_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerRed isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.FormatingData.TimerRed + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.FormatingData.TimerRed nameWithType: ChampSelectView3Page.FormatingData.TimerRed -- uid: OSL_Server.Pages.ChampSelectView3Page.overlayLoaded +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.overlayLoaded name: overlayLoaded - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelectView3Page_overlayLoaded - commentId: F:OSL_Server.Pages.ChampSelectView3Page.overlayLoaded - fullName: OSL_Server.Pages.ChampSelectView3Page.overlayLoaded + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_overlayLoaded + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.overlayLoaded + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.overlayLoaded nameWithType: ChampSelectView3Page.overlayLoaded -- uid: OSL_Server.Pages.ChampSelectView3Page.ResetColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelectView3Page_ResetColor - commentId: M:OSL_Server.Pages.ChampSelectView3Page.ResetColor - fullName: OSL_Server.Pages.ChampSelectView3Page.ResetColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_ResetColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.ResetColor() nameWithType: ChampSelectView3Page.ResetColor() -- uid: OSL_Server.Pages.ChampSelectView3Page.ResetColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelectView3Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView3Page.ResetColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView3Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView3Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView3Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView3Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView3Page.ResetColor nameWithType: ChampSelectView3Page.ResetColor -- uid: OSL_Server.Pages.ChampSelectView4Page +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page name: ChampSelectView4Page - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html - commentId: T:OSL_Server.Pages.ChampSelectView4Page - fullName: OSL_Server.Pages.ChampSelectView4Page + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView4Page + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page nameWithType: ChampSelectView4Page -- uid: OSL_Server.Pages.ChampSelectView4Page.EnableOrDisableOverlayView +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.EnableOrDisableOverlayView name: EnableOrDisableOverlayView() - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelectView4Page_EnableOrDisableOverlayView - commentId: M:OSL_Server.Pages.ChampSelectView4Page.EnableOrDisableOverlayView - fullName: OSL_Server.Pages.ChampSelectView4Page.EnableOrDisableOverlayView() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_EnableOrDisableOverlayView + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.EnableOrDisableOverlayView() nameWithType: ChampSelectView4Page.EnableOrDisableOverlayView() -- uid: OSL_Server.Pages.ChampSelectView4Page.EnableOrDisableOverlayView* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.EnableOrDisableOverlayView* name: EnableOrDisableOverlayView - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelectView4Page_EnableOrDisableOverlayView_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.EnableOrDisableOverlayView + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_EnableOrDisableOverlayView_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.EnableOrDisableOverlayView isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.EnableOrDisableOverlayView + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.EnableOrDisableOverlayView nameWithType: ChampSelectView4Page.EnableOrDisableOverlayView -- uid: OSL_Server.Pages.ChampSelectView4Page.formatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelectView4Page_formatingData - commentId: F:OSL_Server.Pages.ChampSelectView4Page.formatingData - fullName: OSL_Server.Pages.ChampSelectView4Page.formatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_formatingData + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.formatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.formatingData nameWithType: ChampSelectView4Page.formatingData -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData name: ChampSelectView4Page.FormatingData - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html - commentId: T:OSL_Server.Pages.ChampSelectView4Page.FormatingData - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html + commentId: T:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData nameWithType: ChampSelectView4Page.FormatingData -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradient name: BackgroudGradient - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradient - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradient - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradient + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradient nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradient -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradient* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradient* name: BackgroudGradient - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradient_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradient + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradient isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradient nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradient -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 name: BackgroudGradientColor1 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientColor1 - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientColor1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientColor1 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor1* name: BackgroudGradientColor1 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientColor1_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientColor1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor1 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientColor1 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 name: BackgroudGradientColor2 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientColor2 - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientColor2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientColor2 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor2* name: BackgroudGradientColor2 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientColor2_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientColor2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientColor2 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientColor2 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientDeg +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientDeg name: BackgroudGradientDeg - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientDeg - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientDeg - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientDeg + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientDeg nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientDeg -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientDeg* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientDeg* name: BackgroudGradientDeg - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientDeg_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientDeg_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientDeg isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientDeg + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientDeg nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientDeg -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 name: BackgroudGradientPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientPercent1 - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientPercent1 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1* name: BackgroudGradientPercent1 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientPercent1_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientPercent1_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientPercent1 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 name: BackgroudGradientPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientPercent2 - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientPercent2 + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2* name: BackgroudGradientPercent2 - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BackgroudGradientPercent2_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BackgroudGradientPercent2_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 nameWithType: ChampSelectView4Page.FormatingData.BackgroudGradientPercent2 -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBanText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBanText name: BlueSideBanText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideBanText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBanText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBanText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideBanText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBanText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBanText nameWithType: ChampSelectView4Page.FormatingData.BlueSideBanText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBanText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBanText* name: BlueSideBanText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideBanText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBanText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideBanText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBanText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBanText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBanText nameWithType: ChampSelectView4Page.FormatingData.BlueSideBanText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan name: BlueSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideBorderColorBan - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideBorderColorBan + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan nameWithType: ChampSelectView4Page.FormatingData.BlueSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan* name: BlueSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorBan nameWithType: ChampSelectView4Page.FormatingData.BlueSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick name: BlueSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideBorderColorPick - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideBorderColorPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick nameWithType: ChampSelectView4Page.FormatingData.BlueSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick* name: BlueSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideBorderColorPick nameWithType: ChampSelectView4Page.FormatingData.BlueSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorSubText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorSubText name: BlueSideColorSubText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorSubText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorSubText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorSubText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorSubText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorSubText nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorSubText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorSubText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorSubText* name: BlueSideColorSubText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorSubText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorSubText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorSubText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorSubText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorSubText nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorSubText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorText name: BlueSideColorText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorText nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorText* name: BlueSideColorText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorText nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextBan name: BlueSideColorTextBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorTextBan - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextBan - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorTextBan + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextBan nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorTextBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextBan* name: BlueSideColorTextBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorTextBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorTextBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextBan nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorTextBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextPick name: BlueSideColorTextPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorTextPick - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextPick - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorTextPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextPick nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorTextPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextPick* name: BlueSideColorTextPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideColorTextPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideColorTextPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideColorTextPick nameWithType: ChampSelectView4Page.FormatingData.BlueSideColorTextPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSidePickText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSidePickText name: BlueSidePickText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSidePickText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSidePickText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSidePickText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSidePickText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSidePickText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSidePickText nameWithType: ChampSelectView4Page.FormatingData.BlueSidePickText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSidePickText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSidePickText* name: BlueSidePickText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSidePickText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSidePickText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSidePickText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSidePickText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSidePickText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSidePickText nameWithType: ChampSelectView4Page.FormatingData.BlueSidePickText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamName name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamName - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView4Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamName* name: BlueSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamName nameWithType: ChampSelectView4Page.FormatingData.BlueSideTeamName -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext name: BlueSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideTeamNameSubtext - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideTeamNameSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext nameWithType: ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext* name: BlueSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BlueSideTeamNameSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BlueSideTeamNameSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext nameWithType: ChampSelectView4Page.FormatingData.BlueSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderBottomPixel +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderBottomPixel name: BorderBottomPixel - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BorderBottomPixel - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderBottomPixel - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderBottomPixel + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BorderBottomPixel + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderBottomPixel + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderBottomPixel nameWithType: ChampSelectView4Page.FormatingData.BorderBottomPixel -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderBottomPixel* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderBottomPixel* name: BorderBottomPixel - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BorderBottomPixel_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderBottomPixel + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BorderBottomPixel_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderBottomPixel isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderBottomPixel + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderBottomPixel nameWithType: ChampSelectView4Page.FormatingData.BorderBottomPixel -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderTop +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderTop name: BorderTop - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BorderTop - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderTop - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderTop + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BorderTop + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderTop nameWithType: ChampSelectView4Page.FormatingData.BorderTop -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderTop* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderTop* name: BorderTop - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_BorderTop_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderTop + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_BorderTop_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderTop isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.BorderTop + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.BorderTop nameWithType: ChampSelectView4Page.FormatingData.BorderTop -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultPatch nameWithType: ChampSelectView4Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultPatch nameWithType: ChampSelectView4Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultRegion nameWithType: ChampSelectView4Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.DefaultRegion nameWithType: ChampSelectView4Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient name: OverlayColorBackgroudGradient - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_OverlayColorBackgroudGradient - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient nameWithType: ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient* name: OverlayColorBackgroudGradient - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_OverlayColorBackgroudGradient_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient nameWithType: ChampSelectView4Page.FormatingData.OverlayColorBackgroudGradient -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBanText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBanText name: RedSideBanText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideBanText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBanText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBanText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideBanText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBanText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBanText nameWithType: ChampSelectView4Page.FormatingData.RedSideBanText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBanText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBanText* name: RedSideBanText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideBanText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBanText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideBanText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBanText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBanText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBanText nameWithType: ChampSelectView4Page.FormatingData.RedSideBanText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorBan name: RedSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideBorderColorBan - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorBan - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideBorderColorBan + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorBan nameWithType: ChampSelectView4Page.FormatingData.RedSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorBan* name: RedSideBorderColorBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideBorderColorBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideBorderColorBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorBan nameWithType: ChampSelectView4Page.FormatingData.RedSideBorderColorBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorPick name: RedSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideBorderColorPick - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorPick - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideBorderColorPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorPick nameWithType: ChampSelectView4Page.FormatingData.RedSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorPick* name: RedSideBorderColorPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideBorderColorPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideBorderColorPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideBorderColorPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideBorderColorPick nameWithType: ChampSelectView4Page.FormatingData.RedSideBorderColorPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorSubText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorSubText name: RedSideColorSubText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorSubText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorSubText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorSubText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorSubText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorSubText nameWithType: ChampSelectView4Page.FormatingData.RedSideColorSubText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorSubText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorSubText* name: RedSideColorSubText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorSubText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorSubText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorSubText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorSubText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorSubText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorSubText nameWithType: ChampSelectView4Page.FormatingData.RedSideColorSubText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorText name: RedSideColorText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorText nameWithType: ChampSelectView4Page.FormatingData.RedSideColorText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorText* name: RedSideColorText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorText nameWithType: ChampSelectView4Page.FormatingData.RedSideColorText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextBan +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextBan name: RedSideColorTextBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorTextBan - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextBan - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorTextBan + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextBan nameWithType: ChampSelectView4Page.FormatingData.RedSideColorTextBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextBan* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextBan* name: RedSideColorTextBan - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorTextBan_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextBan + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorTextBan_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextBan isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextBan + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextBan nameWithType: ChampSelectView4Page.FormatingData.RedSideColorTextBan -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextPick +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextPick name: RedSideColorTextPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorTextPick - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextPick - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorTextPick + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextPick nameWithType: ChampSelectView4Page.FormatingData.RedSideColorTextPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextPick* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextPick* name: RedSideColorTextPick - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideColorTextPick_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextPick + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideColorTextPick_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextPick isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideColorTextPick + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideColorTextPick nameWithType: ChampSelectView4Page.FormatingData.RedSideColorTextPick -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSidePickText +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSidePickText name: RedSidePickText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSidePickText - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSidePickText - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSidePickText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSidePickText + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSidePickText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSidePickText nameWithType: ChampSelectView4Page.FormatingData.RedSidePickText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSidePickText* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSidePickText* name: RedSidePickText - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSidePickText_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSidePickText + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSidePickText_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSidePickText isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSidePickText + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSidePickText nameWithType: ChampSelectView4Page.FormatingData.RedSidePickText -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamName +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamName name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideTeamName - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamName - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideTeamName + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView4Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamName* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamName* name: RedSideTeamName - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideTeamName_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamName + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideTeamName_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamName isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamName + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamName nameWithType: ChampSelectView4Page.FormatingData.RedSideTeamName -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext name: RedSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideTeamNameSubtext - commentId: P:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideTeamNameSubtext + commentId: P:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext nameWithType: ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext* name: RedSideTeamNameSubtext - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelectView4Page_FormatingData_RedSideTeamNameSubtext_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_FormatingData_RedSideTeamNameSubtext_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext nameWithType: ChampSelectView4Page.FormatingData.RedSideTeamNameSubtext -- uid: OSL_Server.Pages.ChampSelectView4Page.overlayLoaded +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.overlayLoaded name: overlayLoaded - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelectView4Page_overlayLoaded - commentId: F:OSL_Server.Pages.ChampSelectView4Page.overlayLoaded - fullName: OSL_Server.Pages.ChampSelectView4Page.overlayLoaded + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_overlayLoaded + commentId: F:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.overlayLoaded + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.overlayLoaded nameWithType: ChampSelectView4Page.overlayLoaded -- uid: OSL_Server.Pages.ChampSelectView4Page.ResetColor +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelectView4Page_ResetColor - commentId: M:OSL_Server.Pages.ChampSelectView4Page.ResetColor - fullName: OSL_Server.Pages.ChampSelectView4Page.ResetColor() + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_ResetColor + commentId: M:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.ResetColor() nameWithType: ChampSelectView4Page.ResetColor() -- uid: OSL_Server.Pages.ChampSelectView4Page.ResetColor* +- uid: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelectView4Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.ChampSelectView4Page.ResetColor + href: apiserver/OSL_Server.Pages.ChampSelect.ChampSelectView4Page.html#OSL_Server_Pages_ChampSelect_ChampSelectView4Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.ChampSelect.ChampSelectView4Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.ChampSelectView4Page.ResetColor + fullName: OSL_Server.Pages.ChampSelect.ChampSelectView4Page.ResetColor nameWithType: ChampSelectView4Page.ResetColor - uid: OSL_Server.Pages.ConfigPage name: ConfigPage @@ -8134,6 +9100,19 @@ references: isSpec: "True" fullName: OSL_Server.Pages.ConfigPage.ConfigOverlayText.Port nameWithType: ConfigPage.ConfigOverlayText.Port +- uid: OSL_Server.Pages.ConfigPage.ConfigOverlayText.WebRiotApiKey + name: WebRiotApiKey + href: apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html#OSL_Server_Pages_ConfigPage_ConfigOverlayText_WebRiotApiKey + commentId: P:OSL_Server.Pages.ConfigPage.ConfigOverlayText.WebRiotApiKey + fullName: OSL_Server.Pages.ConfigPage.ConfigOverlayText.WebRiotApiKey + nameWithType: ConfigPage.ConfigOverlayText.WebRiotApiKey +- uid: OSL_Server.Pages.ConfigPage.ConfigOverlayText.WebRiotApiKey* + name: WebRiotApiKey + href: apiserver/OSL_Server.Pages.ConfigPage.ConfigOverlayText.html#OSL_Server_Pages_ConfigPage_ConfigOverlayText_WebRiotApiKey_ + commentId: Overload:OSL_Server.Pages.ConfigPage.ConfigOverlayText.WebRiotApiKey + isSpec: "True" + fullName: OSL_Server.Pages.ConfigPage.ConfigOverlayText.WebRiotApiKey + nameWithType: ConfigPage.ConfigOverlayText.WebRiotApiKey - uid: OSL_Server.Pages.ConfigPage.GenerateConfigFileChampSelectView1 name: GenerateConfigFileChampSelectView1() href: apiserver/OSL_Server.Pages.ConfigPage.html#OSL_Server_Pages_ConfigPage_GenerateConfigFileChampSelectView1 @@ -8147,12 +9126,9212 @@ references: isSpec: "True" fullName: OSL_Server.Pages.ConfigPage.GenerateConfigFileChampSelectView1 nameWithType: ConfigPage.GenerateConfigFileChampSelectView1 -- uid: OSL_Server.Pages.EndGamePage +- uid: OSL_Server.Pages.ConfigPage.WebRiotApiKeySubmit + name: WebRiotApiKeySubmit() + href: apiserver/OSL_Server.Pages.ConfigPage.html#OSL_Server_Pages_ConfigPage_WebRiotApiKeySubmit + commentId: M:OSL_Server.Pages.ConfigPage.WebRiotApiKeySubmit + fullName: OSL_Server.Pages.ConfigPage.WebRiotApiKeySubmit() + nameWithType: ConfigPage.WebRiotApiKeySubmit() +- uid: OSL_Server.Pages.ConfigPage.WebRiotApiKeySubmit* + name: WebRiotApiKeySubmit + href: apiserver/OSL_Server.Pages.ConfigPage.html#OSL_Server_Pages_ConfigPage_WebRiotApiKeySubmit_ + commentId: Overload:OSL_Server.Pages.ConfigPage.WebRiotApiKeySubmit + isSpec: "True" + fullName: OSL_Server.Pages.ConfigPage.WebRiotApiKeySubmit + nameWithType: ConfigPage.WebRiotApiKeySubmit +- uid: OSL_Server.Pages.EndGame + name: OSL_Server.Pages.EndGame + href: apiserver/OSL_Server.Pages.EndGame.html + commentId: N:OSL_Server.Pages.EndGame + fullName: OSL_Server.Pages.EndGame + nameWithType: OSL_Server.Pages.EndGame +- uid: OSL_Server.Pages.EndGame.EndGamePage name: EndGamePage - href: apiserver/OSL_Server.Pages.EndGamePage.html - commentId: T:OSL_Server.Pages.EndGamePage - fullName: OSL_Server.Pages.EndGamePage + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html + commentId: T:OSL_Server.Pages.EndGame.EndGamePage + fullName: OSL_Server.Pages.EndGame.EndGamePage nameWithType: EndGamePage +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1 + name: colorPickerOverlay1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorPickerOverlay1 + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1 + nameWithType: EndGamePage.colorPickerOverlay1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1Bans + name: colorPickerOverlay1Bans + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorPickerOverlay1Bans + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1Bans + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1Bans + nameWithType: EndGamePage.colorPickerOverlay1Bans +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1ChampInfo + name: colorPickerOverlay1ChampInfo + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorPickerOverlay1ChampInfo + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1ChampInfo + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1ChampInfo + nameWithType: EndGamePage.colorPickerOverlay1ChampInfo +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1GlobalStats + name: colorPickerOverlay1GlobalStats + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorPickerOverlay1GlobalStats + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1GlobalStats + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1GlobalStats + nameWithType: EndGamePage.colorPickerOverlay1GlobalStats +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1GoldDiff + name: colorPickerOverlay1GoldDiff + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorPickerOverlay1GoldDiff + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1GoldDiff + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1GoldDiff + nameWithType: EndGamePage.colorPickerOverlay1GoldDiff +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1TimerBar + name: colorPickerOverlay1TimerBar + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorPickerOverlay1TimerBar + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1TimerBar + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorPickerOverlay1TimerBar + nameWithType: EndGamePage.colorPickerOverlay1TimerBar +- uid: OSL_Server.Pages.EndGame.EndGamePage.colorValue + name: colorValue + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_colorValue + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.colorValue + fullName: OSL_Server.Pages.EndGame.EndGamePage.colorValue + nameWithType: EndGamePage.colorValue +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllBackgroundView3 + name: DisableAllBackgroundView3() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllBackgroundView3 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.DisableAllBackgroundView3 + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllBackgroundView3() + nameWithType: EndGamePage.DisableAllBackgroundView3() +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllBackgroundView3* + name: DisableAllBackgroundView3 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllBackgroundView3_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.DisableAllBackgroundView3 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllBackgroundView3 + nameWithType: EndGamePage.DisableAllBackgroundView3 +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView1 + name: DisableAllGradiantView1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllGradiantView1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView1() + nameWithType: EndGamePage.DisableAllGradiantView1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView1* + name: DisableAllGradiantView1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllGradiantView1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView1 + nameWithType: EndGamePage.DisableAllGradiantView1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView2 + name: DisableAllGradiantView2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllGradiantView2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView2() + nameWithType: EndGamePage.DisableAllGradiantView2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView2* + name: DisableAllGradiantView2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllGradiantView2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView2 + nameWithType: EndGamePage.DisableAllGradiantView2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView3 + name: DisableAllGradiantView3() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllGradiantView3 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView3 + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView3() + nameWithType: EndGamePage.DisableAllGradiantView3() +- uid: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView3* + name: DisableAllGradiantView3 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_DisableAllGradiantView3_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView3 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.DisableAllGradiantView3 + nameWithType: EndGamePage.DisableAllGradiantView3 +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllBackgroundView3 + name: EnableAllBackgroundView3() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllBackgroundView3 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.EnableAllBackgroundView3 + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllBackgroundView3() + nameWithType: EndGamePage.EnableAllBackgroundView3() +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllBackgroundView3* + name: EnableAllBackgroundView3 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllBackgroundView3_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.EnableAllBackgroundView3 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllBackgroundView3 + nameWithType: EndGamePage.EnableAllBackgroundView3 +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView1 + name: EnableAllGradiantView1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllGradiantView1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView1() + nameWithType: EndGamePage.EnableAllGradiantView1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView1* + name: EnableAllGradiantView1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllGradiantView1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView1 + nameWithType: EndGamePage.EnableAllGradiantView1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView2 + name: EnableAllGradiantView2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllGradiantView2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView2() + nameWithType: EndGamePage.EnableAllGradiantView2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView2* + name: EnableAllGradiantView2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllGradiantView2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView2 + nameWithType: EndGamePage.EnableAllGradiantView2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView3 + name: EnableAllGradiantView3() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllGradiantView3 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView3 + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView3() + nameWithType: EndGamePage.EnableAllGradiantView3() +- uid: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView3* + name: EnableAllGradiantView3 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.html#OSL_Server_Pages_EndGame_EndGamePage_EnableAllGradiantView3_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView3 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.EnableAllGradiantView3 + nameWithType: EndGamePage.EnableAllGradiantView3 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1 + name: EndGamePage.TextValueOverlayView1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html + commentId: T:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1 + nameWithType: EndGamePage.TextValueOverlayView1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColor + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColor + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColor* + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColor + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorDeg + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorDeg* + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit + name: BackgroundColorEnableDisableSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorEnableDisableSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit* + name: BackgroundColorEnableDisableSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorEnableDisableSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorEnableDisableSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent1* + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent2* + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorSubmit + name: BackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorSubmit* + name: BackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.BackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg* + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1* + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2* + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit + name: BansBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit* + name: BansBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.BansBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColor + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColor* + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorNotSet + name: BansBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView1.BansBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorSubmit + name: BansBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.BansBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorSubmit* + name: BansBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.BansBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiant + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiant + nameWithType: EndGamePage.TextValueOverlayView1.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiant* + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiant + nameWithType: EndGamePage.TextValueOverlayView1.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiantSubmit + name: BansGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.BansGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiantSubmit* + name: BansGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_BansGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.BansGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView1.BansGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg* + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1* + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2* + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit + name: ChampionInfoBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit* + name: ChampionInfoBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor* + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorNotSet + name: ChampionInfoBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit + name: ChampionInfoBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit* + name: ChampionInfoBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiant + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiant + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiant* + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiant + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit + name: ChampionInfoGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit* + name: ChampionInfoGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoText + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoText + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoText* + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_ChampionInfoText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.ChampionInfoText + nameWithType: EndGamePage.TextValueOverlayView1.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg* + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1* + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2* + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit + name: GlobalStatsBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit* + name: GlobalStatsBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor* + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorNotSet + name: GlobalStatsBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit + name: GlobalStatsBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit* + name: GlobalStatsBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiant + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiant + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiant* + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiant + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit + name: GlobalStatsGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit* + name: GlobalStatsGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GlobalStatsGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GlobalStatsGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg* + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1* + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2* + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit + name: GoldDiffBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit* + name: GoldDiffBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColor + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColor* + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorNotSet + name: GoldDiffBarColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBarColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorNotSet + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBarColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit + name: GoldDiffBarColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBarColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit* + name: GoldDiffBarColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBarColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBarColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColor + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColor* + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorNotSet + name: GoldDiffBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit + name: GoldDiffBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit* + name: GoldDiffBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiant + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiant + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiant* + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiant + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit + name: GoldDiffGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit* + name: GoldDiffGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffText + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffText + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffText* + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_GoldDiffText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.GoldDiffText + nameWithType: EndGamePage.TextValueOverlayView1.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1 + name: SetBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1* + name: SetBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView1.SetBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2 + name: SetBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2* + name: SetBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView1.SetBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1 + name: SetBansBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1* + name: SetBansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2 + name: SetBansBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2* + name: SetBansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView1.SetBansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBorderColor + name: SetBansBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetBansBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBorderColor* + name: SetBansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.SetBansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansTextColor + name: SetBansTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetBansTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansTextColor* + name: SetBansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetBansTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetBansTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetBansTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1 + name: SetChampionInfoBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1* + name: SetChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2 + name: SetChampionInfoBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2* + name: SetChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor + name: SetChampionInfoBlueBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBlueBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor* + name: SetChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBlueBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor + name: SetChampionInfoBlueDegaTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBlueDegaTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor* + name: SetChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBlueDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor + name: SetChampionInfoBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor* + name: SetChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor + name: SetChampionInfoRedBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoRedBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor* + name: SetChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoRedBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor + name: SetChampionInfoRedDegaTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoRedDegaTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor* + name: SetChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoRedDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor + name: SetChampionInfoTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor* + name: SetChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetChampionInfoTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1 + name: SetGlobalStatsBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1* + name: SetGlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2 + name: SetGlobalStatsBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2* + name: SetGlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor + name: SetGlobalStatsBlueTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBlueTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor* + name: SetGlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBlueTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor + name: SetGlobalStatsBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor* + name: SetGlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor + name: SetGlobalStatsRedTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsRedTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor* + name: SetGlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsRedTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor + name: SetGlobalStatsTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor* + name: SetGlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGlobalStatsTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1 + name: SetGoldDiffBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1* + name: SetGoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2 + name: SetGoldDiffBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2* + name: SetGoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor + name: SetGoldDiffBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor* + name: SetGoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor + name: SetGoldDiffBluePointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBluePointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor* + name: SetGoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBluePointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor + name: SetGoldDiffBlueTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBlueTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor* + name: SetGoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBlueTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor + name: SetGoldDiffBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor* + name: SetGoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor + name: SetGoldDiffLinkPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffLinkPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor* + name: SetGoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffLinkPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor + name: SetGoldDiffRedPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffRedPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor* + name: SetGoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffRedPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor + name: SetGoldDiffRedTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffRedTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor* + name: SetGoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffRedTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor + name: SetGoldDiffStartEndPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffStartEndPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor* + name: SetGoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffStartEndPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor + name: SetGoldDiffTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor* + name: SetGoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor + name: SetGoldDiffZeroPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffZeroPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor* + name: SetGoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffZeroPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor + name: SetGoldDiffZeroTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffZeroTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor* + name: SetGoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetGoldDiffZeroTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView1.SetGoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1 + name: SetTopBarBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1* + name: SetTopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2 + name: SetTopBarBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2* + name: SetTopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor + name: SetTopBarBlueTeamNameColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBlueTeamNameColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor* + name: SetTopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor + name: SetTopBarBlueTeamScoreColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBlueTeamScoreColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor* + name: SetTopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBlueTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor + name: SetTopBarBlueTeamWinLossColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBlueTeamWinLossColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor* + name: SetTopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBlueTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBorderColor + name: SetTopBarBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBorderColor* + name: SetTopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor + name: SetTopBarRedTeamNameColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarRedTeamNameColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor* + name: SetTopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor + name: SetTopBarRedTeamScoreColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarRedTeamScoreColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor* + name: SetTopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarRedTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor + name: SetTopBarRedTeamWinLossColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarRedTeamWinLossColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor* + name: SetTopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarRedTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerColor + name: SetTopBarTimerColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarTimerColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarTimerColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerColor* + name: SetTopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarTimerColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor + name: SetTopBarTimerTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarTimerTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor() + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor* + name: SetTopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SetTopBarTimerTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor + nameWithType: EndGamePage.TextValueOverlayView1.SetTopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SwitchSideRedBlue + name: SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SwitchSideRedBlue + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SwitchSideRedBlue() + nameWithType: EndGamePage.TextValueOverlayView1.SwitchSideRedBlue() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SwitchSideRedBlue* + name: SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SwitchSideRedBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.SwitchSideRedBlue + nameWithType: EndGamePage.TextValueOverlayView1.SwitchSideRedBlue +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsBansBorderColor + name: TempsBansBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsBansBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsBansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsBansBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.TempsBansBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsBansBorderColor* + name: TempsBansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsBansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsBansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsBansBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TempsBansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor + name: TempsChampionInfoBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsChampionInfoBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor* + name: TempsChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TempsChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor + name: TempsGlobalStatsBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsGlobalStatsBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor* + name: TempsGlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsGlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TempsGlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor + name: TempsGoldDiffBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsGoldDiffBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor() + nameWithType: EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor* + name: TempsGoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsGoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView1.TempsGoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor + name: TempsGoldDiffBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsGoldDiffBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor* + name: TempsGoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsGoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TempsGoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor + name: TempsTopBarBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsTopBarBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor() + nameWithType: EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor* + name: TempsTopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TempsTopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TempsTopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg* + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1* + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2* + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit + name: TopBarBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit* + name: TopBarBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamName + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamName + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamName + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamName* + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamName + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit + name: TopBarBlueTeamNameSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamNameSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit* + name: TopBarBlueTeamNameSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamNameSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore* + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit + name: TopBarBlueTeamScoreSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamScoreSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit* + name: TopBarBlueTeamScoreSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBlueTeamScoreSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBlueTeamScoreSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColor + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColor* + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorNotSet + name: TopBarBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit + name: TopBarBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit* + name: TopBarBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiant + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiant + nameWithType: EndGamePage.TextValueOverlayView1.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiant* + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiant + nameWithType: EndGamePage.TextValueOverlayView1.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit + name: TopBarGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit* + name: TopBarGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamName + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamName + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamName + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamName* + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamName + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit + name: TopBarRedTeamNameSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamNameSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit* + name: TopBarRedTeamNameSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamNameSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScore + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScore + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScore + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScore* + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScore + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit + name: TopBarRedTeamScoreSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamScoreSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit() + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit* + name: TopBarRedTeamScoreSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarRedTeamScoreSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit + nameWithType: EndGamePage.TextValueOverlayView1.TopBarRedTeamScoreSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarTimerText + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarTimerText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarTimerText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarTimerText + nameWithType: EndGamePage.TextValueOverlayView1.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarTimerText* + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView1_TopBarTimerText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarTimerText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView1.TopBarTimerText + nameWithType: EndGamePage.TextValueOverlayView1.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2 + name: EndGamePage.TextValueOverlayView2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html + commentId: T:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2 + nameWithType: EndGamePage.TextValueOverlayView2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColor + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColor + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColor* + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColor + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorDeg + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorDeg* + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit + name: BackgroundColorEnableDisableSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorEnableDisableSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit* + name: BackgroundColorEnableDisableSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorEnableDisableSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorEnableDisableSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent1* + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent2* + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorSubmit + name: BackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorSubmit* + name: BackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.BackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg* + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1* + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2* + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit + name: BansBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit* + name: BansBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.BansBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColor + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColor* + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorNotSet + name: BansBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView2.BansBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorSubmit + name: BansBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.BansBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorSubmit* + name: BansBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.BansBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiant + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiant + nameWithType: EndGamePage.TextValueOverlayView2.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiant* + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiant + nameWithType: EndGamePage.TextValueOverlayView2.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiantSubmit + name: BansGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.BansGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiantSubmit* + name: BansGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_BansGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.BansGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView2.BansGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg* + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1* + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2* + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit + name: ChampionInfoBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit* + name: ChampionInfoBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor* + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorNotSet + name: ChampionInfoBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit + name: ChampionInfoBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit* + name: ChampionInfoBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiant + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiant + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiant* + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiant + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit + name: ChampionInfoGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit* + name: ChampionInfoGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoText + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoText + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoText* + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_ChampionInfoText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.ChampionInfoText + nameWithType: EndGamePage.TextValueOverlayView2.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg* + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1* + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2* + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit + name: GlobalStatsBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit* + name: GlobalStatsBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor* + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorNotSet + name: GlobalStatsBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit + name: GlobalStatsBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit* + name: GlobalStatsBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiant + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiant + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiant* + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiant + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit + name: GlobalStatsGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit* + name: GlobalStatsGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GlobalStatsGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GlobalStatsGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg* + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1* + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2* + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit + name: GoldDiffBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit* + name: GoldDiffBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColor + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColor* + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorNotSet + name: GoldDiffBarColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBarColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorNotSet + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBarColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit + name: GoldDiffBarColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBarColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit* + name: GoldDiffBarColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBarColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBarColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColor + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColor* + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorNotSet + name: GoldDiffBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit + name: GoldDiffBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit* + name: GoldDiffBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiant + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiant + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiant* + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiant + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit + name: GoldDiffGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit* + name: GoldDiffGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffText + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffText + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffText* + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_GoldDiffText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.GoldDiffText + nameWithType: EndGamePage.TextValueOverlayView2.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1 + name: SetBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1* + name: SetBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView2.SetBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2 + name: SetBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2* + name: SetBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView2.SetBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1 + name: SetBansBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1* + name: SetBansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2 + name: SetBansBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2* + name: SetBansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView2.SetBansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBorderColor + name: SetBansBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetBansBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBorderColor* + name: SetBansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.SetBansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansTextColor + name: SetBansTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetBansTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansTextColor* + name: SetBansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetBansTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetBansTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetBansTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1 + name: SetChampionInfoBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1* + name: SetChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2 + name: SetChampionInfoBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2* + name: SetChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor + name: SetChampionInfoBlueBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBlueBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor* + name: SetChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBlueBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor + name: SetChampionInfoBlueDegaTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBlueDegaTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor* + name: SetChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBlueDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor + name: SetChampionInfoBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor* + name: SetChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor + name: SetChampionInfoRedBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoRedBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor* + name: SetChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoRedBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor + name: SetChampionInfoRedDegaTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoRedDegaTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor* + name: SetChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoRedDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor + name: SetChampionInfoTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor* + name: SetChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetChampionInfoTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1 + name: SetGlobalStatsBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1* + name: SetGlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2 + name: SetGlobalStatsBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2* + name: SetGlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor + name: SetGlobalStatsBlueTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBlueTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor* + name: SetGlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBlueTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor + name: SetGlobalStatsBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor* + name: SetGlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor + name: SetGlobalStatsRedTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsRedTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor* + name: SetGlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsRedTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor + name: SetGlobalStatsTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor* + name: SetGlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGlobalStatsTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1 + name: SetGoldDiffBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1* + name: SetGoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2 + name: SetGoldDiffBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2* + name: SetGoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor + name: SetGoldDiffBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor* + name: SetGoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor + name: SetGoldDiffBluePointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBluePointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor* + name: SetGoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBluePointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor + name: SetGoldDiffBlueTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBlueTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor* + name: SetGoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBlueTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor + name: SetGoldDiffBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor* + name: SetGoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor + name: SetGoldDiffLinkPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffLinkPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor* + name: SetGoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffLinkPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor + name: SetGoldDiffRedPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffRedPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor* + name: SetGoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffRedPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor + name: SetGoldDiffRedTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffRedTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor* + name: SetGoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffRedTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor + name: SetGoldDiffStartEndPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffStartEndPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor* + name: SetGoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffStartEndPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor + name: SetGoldDiffTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor* + name: SetGoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor + name: SetGoldDiffZeroPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffZeroPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor* + name: SetGoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffZeroPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor + name: SetGoldDiffZeroTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffZeroTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor* + name: SetGoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetGoldDiffZeroTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView2.SetGoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1 + name: SetTopBarBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1* + name: SetTopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2 + name: SetTopBarBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2* + name: SetTopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor + name: SetTopBarBlueTeamNameColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBlueTeamNameColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor* + name: SetTopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor + name: SetTopBarBlueTeamScoreColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBlueTeamScoreColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor* + name: SetTopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBlueTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor + name: SetTopBarBlueTeamWinLossColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBlueTeamWinLossColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor* + name: SetTopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBlueTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBorderColor + name: SetTopBarBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBorderColor* + name: SetTopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor + name: SetTopBarRedTeamNameColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarRedTeamNameColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor* + name: SetTopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor + name: SetTopBarRedTeamScoreColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarRedTeamScoreColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor* + name: SetTopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarRedTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor + name: SetTopBarRedTeamWinLossColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarRedTeamWinLossColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor* + name: SetTopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarRedTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerColor + name: SetTopBarTimerColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarTimerColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarTimerColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerColor* + name: SetTopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarTimerColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor + name: SetTopBarTimerTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarTimerTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor() + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor* + name: SetTopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SetTopBarTimerTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor + nameWithType: EndGamePage.TextValueOverlayView2.SetTopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SwitchSideRedBlue + name: SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SwitchSideRedBlue + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SwitchSideRedBlue() + nameWithType: EndGamePage.TextValueOverlayView2.SwitchSideRedBlue() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SwitchSideRedBlue* + name: SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SwitchSideRedBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.SwitchSideRedBlue + nameWithType: EndGamePage.TextValueOverlayView2.SwitchSideRedBlue +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsBansBorderColor + name: TempsBansBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsBansBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsBansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsBansBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.TempsBansBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsBansBorderColor* + name: TempsBansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsBansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsBansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsBansBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TempsBansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor + name: TempsChampionInfoBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsChampionInfoBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor* + name: TempsChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TempsChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor + name: TempsGlobalStatsBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsGlobalStatsBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor* + name: TempsGlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsGlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TempsGlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor + name: TempsGoldDiffBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsGoldDiffBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor() + nameWithType: EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor* + name: TempsGoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsGoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView2.TempsGoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor + name: TempsGoldDiffBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsGoldDiffBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor* + name: TempsGoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsGoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TempsGoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor + name: TempsTopBarBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsTopBarBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor() + nameWithType: EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor* + name: TempsTopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TempsTopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TempsTopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg* + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1* + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2* + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit + name: TopBarBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit* + name: TopBarBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamName + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamName + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamName + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamName* + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamName + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit + name: TopBarBlueTeamNameSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamNameSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit* + name: TopBarBlueTeamNameSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamNameSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore* + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit + name: TopBarBlueTeamScoreSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamScoreSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit* + name: TopBarBlueTeamScoreSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBlueTeamScoreSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBlueTeamScoreSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColor + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColor* + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorNotSet + name: TopBarBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit + name: TopBarBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit* + name: TopBarBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiant + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiant + nameWithType: EndGamePage.TextValueOverlayView2.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiant* + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiant + nameWithType: EndGamePage.TextValueOverlayView2.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit + name: TopBarGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit* + name: TopBarGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamName + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamName + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamName + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamName* + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamName + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit + name: TopBarRedTeamNameSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamNameSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit* + name: TopBarRedTeamNameSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamNameSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScore + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScore + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScore + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScore* + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScore + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit + name: TopBarRedTeamScoreSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamScoreSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit() + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit* + name: TopBarRedTeamScoreSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarRedTeamScoreSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit + nameWithType: EndGamePage.TextValueOverlayView2.TopBarRedTeamScoreSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarTimerText + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarTimerText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarTimerText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarTimerText + nameWithType: EndGamePage.TextValueOverlayView2.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarTimerText* + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView2_TopBarTimerText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarTimerText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView2.TopBarTimerText + nameWithType: EndGamePage.TextValueOverlayView2.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3 + name: EndGamePage.TextValueOverlayView3 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html + commentId: T:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3 + nameWithType: EndGamePage.TextValueOverlayView3 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColor + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColor + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColor* + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColor + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorDeg + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorDeg* + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit + name: BackgroundColorEnableDisableSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorEnableDisableSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit* + name: BackgroundColorEnableDisableSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorEnableDisableSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorEnableDisableSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent1* + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent2* + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorSubmit + name: BackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorSubmit* + name: BackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.BackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackground + name: BansBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackground + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackground + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackground + nameWithType: EndGamePage.TextValueOverlayView3.BansBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackground* + name: BansBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackground_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackground + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackground + nameWithType: EndGamePage.TextValueOverlayView3.BansBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg* + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1* + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2* + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit + name: BansBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit* + name: BansBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundSubmit + name: BansBackgroundSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundSubmit* + name: BansBackgroundSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBackgroundSubmit + nameWithType: EndGamePage.TextValueOverlayView3.BansBackgroundSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColor + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColor* + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorNotSet + name: BansBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.BansBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorSubmit + name: BansBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.BansBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorSubmit* + name: BansBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.BansBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiant + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiant + nameWithType: EndGamePage.TextValueOverlayView3.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiant* + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiant + nameWithType: EndGamePage.TextValueOverlayView3.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiantSubmit + name: BansGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.BansGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiantSubmit* + name: BansGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_BansGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.BansGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView3.BansGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackground + name: ChampionInfoBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackground + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackground + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackground + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackground* + name: ChampionInfoBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackground_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackground + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackground + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg* + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1* + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2* + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit + name: ChampionInfoBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit* + name: ChampionInfoBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit + name: ChampionInfoBackgroundSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit* + name: ChampionInfoBackgroundSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBackgroundSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor* + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorNotSet + name: ChampionInfoBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit + name: ChampionInfoBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit* + name: ChampionInfoBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiant + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiant + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiant* + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiant + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit + name: ChampionInfoGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit* + name: ChampionInfoGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoText + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoText + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoText* + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_ChampionInfoText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.ChampionInfoText + nameWithType: EndGamePage.TextValueOverlayView3.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackground + name: GlobalStatsBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackground + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackground + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackground + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackground* + name: GlobalStatsBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackground_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackground + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackground + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg* + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1* + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2* + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit + name: GlobalStatsBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit* + name: GlobalStatsBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit + name: GlobalStatsBackgroundSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit* + name: GlobalStatsBackgroundSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBackgroundSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor* + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorNotSet + name: GlobalStatsBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit + name: GlobalStatsBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit* + name: GlobalStatsBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiant + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiant + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiant* + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiant + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit + name: GlobalStatsGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit* + name: GlobalStatsGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor + name: GlobalStatsSeparationColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsSeparationColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor* + name: GlobalStatsSeparationColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsSeparationColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorNotSet + name: GlobalStatsSeparationColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsSeparationColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit + name: GlobalStatsSeparationColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsSeparationColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit* + name: GlobalStatsSeparationColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GlobalStatsSeparationColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GlobalStatsSeparationColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackground + name: GoldDiffBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackground + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackground + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackground + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackground* + name: GoldDiffBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackground_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackground + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackground + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg* + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1* + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2* + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit + name: GoldDiffBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit* + name: GoldDiffBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit + name: GoldDiffBackgroundSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit* + name: GoldDiffBackgroundSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBackgroundSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColor + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColor* + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorNotSet + name: GoldDiffBarColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBarColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBarColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit + name: GoldDiffBarColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBarColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit* + name: GoldDiffBarColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBarColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBarColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColor + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColor* + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorNotSet + name: GoldDiffBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit + name: GoldDiffBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit* + name: GoldDiffBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiant + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiant + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiant* + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiant + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit + name: GoldDiffGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit* + name: GoldDiffGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffText + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffText + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffText* + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_GoldDiffText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.GoldDiffText + nameWithType: EndGamePage.TextValueOverlayView3.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1 + name: SetBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1* + name: SetBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView3.SetBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2 + name: SetBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2* + name: SetBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView3.SetBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1 + name: SetBansBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1* + name: SetBansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2 + name: SetBansBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2* + name: SetBansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView3.SetBansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBorderColor + name: SetBansBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetBansBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBorderColor* + name: SetBansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.SetBansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansTextColor + name: SetBansTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetBansTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansTextColor* + name: SetBansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetBansTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetBansTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetBansTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1 + name: SetChampionInfoBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1* + name: SetChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2 + name: SetChampionInfoBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2* + name: SetChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor + name: SetChampionInfoBlueBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBlueBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor* + name: SetChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBlueBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor + name: SetChampionInfoBlueDegaTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBlueDegaTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor* + name: SetChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBlueDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor + name: SetChampionInfoBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor* + name: SetChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor + name: SetChampionInfoRedBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoRedBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor* + name: SetChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoRedBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor + name: SetChampionInfoRedDegaTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoRedDegaTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor* + name: SetChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoRedDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor + name: SetChampionInfoTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor* + name: SetChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetChampionInfoTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1 + name: SetGlobalStatsBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1* + name: SetGlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2 + name: SetGlobalStatsBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2* + name: SetGlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor + name: SetGlobalStatsBlueTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBlueTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor* + name: SetGlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBlueTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor + name: SetGlobalStatsBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor* + name: SetGlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor + name: SetGlobalStatsRedTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsRedTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor* + name: SetGlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsRedTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor + name: SetGlobalStatsSeparationColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsSeparationColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor* + name: SetGlobalStatsSeparationColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsSeparationColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsSeparationColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor + name: SetGlobalStatsTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor* + name: SetGlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGlobalStatsTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1 + name: SetGoldDiffBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1* + name: SetGoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2 + name: SetGoldDiffBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2* + name: SetGoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor + name: SetGoldDiffBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor* + name: SetGoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor + name: SetGoldDiffBluePointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBluePointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor* + name: SetGoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBluePointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor + name: SetGoldDiffBlueTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBlueTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor* + name: SetGoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBlueTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor + name: SetGoldDiffBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor* + name: SetGoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor + name: SetGoldDiffLinkPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffLinkPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor* + name: SetGoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffLinkPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor + name: SetGoldDiffRedPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffRedPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor* + name: SetGoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffRedPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor + name: SetGoldDiffRedTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffRedTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor* + name: SetGoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffRedTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor + name: SetGoldDiffStartEndPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffStartEndPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor* + name: SetGoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffStartEndPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor + name: SetGoldDiffTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor* + name: SetGoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor + name: SetGoldDiffZeroPointGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffZeroPointGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor* + name: SetGoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffZeroPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor + name: SetGoldDiffZeroTextGoldColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffZeroTextGoldColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor* + name: SetGoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetGoldDiffZeroTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor + nameWithType: EndGamePage.TextValueOverlayView3.SetGoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1 + name: SetTopBarBackgroundColorColor1() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBackgroundColorColor1 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1* + name: SetTopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1 + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2 + name: SetTopBarBackgroundColorColor2() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBackgroundColorColor2 + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2* + name: SetTopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2 + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor + name: SetTopBarBlueTeamNameColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBlueTeamNameColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor* + name: SetTopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor + name: SetTopBarBlueTeamScoreColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBlueTeamScoreColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor* + name: SetTopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBlueTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor + name: SetTopBarBlueTeamWinLossColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBlueTeamWinLossColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor* + name: SetTopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBlueTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBorderColor + name: SetTopBarBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBorderColor* + name: SetTopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor + name: SetTopBarRedTeamNameColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarRedTeamNameColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor* + name: SetTopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor + name: SetTopBarRedTeamScoreColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarRedTeamScoreColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor* + name: SetTopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarRedTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor + name: SetTopBarRedTeamWinLossColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarRedTeamWinLossColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor* + name: SetTopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarRedTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerColor + name: SetTopBarTimerColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarTimerColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarTimerColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerColor* + name: SetTopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarTimerColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor + name: SetTopBarTimerTextColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarTimerTextColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor() + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor* + name: SetTopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SetTopBarTimerTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor + nameWithType: EndGamePage.TextValueOverlayView3.SetTopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SwitchSideRedBlue + name: SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SwitchSideRedBlue + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SwitchSideRedBlue() + nameWithType: EndGamePage.TextValueOverlayView3.SwitchSideRedBlue() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SwitchSideRedBlue* + name: SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SwitchSideRedBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.SwitchSideRedBlue + nameWithType: EndGamePage.TextValueOverlayView3.SwitchSideRedBlue +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsBansBorderColor + name: TempsBansBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsBansBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsBansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsBansBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsBansBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsBansBorderColor* + name: TempsBansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsBansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsBansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsBansBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsBansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor + name: TempsChampionInfoBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsChampionInfoBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor* + name: TempsChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor + name: TempsGlobalStatsBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGlobalStatsBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor* + name: TempsGlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsGlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor + name: TempsGlobalStatsSeparationColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGlobalStatsSeparationColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor* + name: TempsGlobalStatsSeparationColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGlobalStatsSeparationColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsGlobalStatsSeparationColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor + name: TempsGoldDiffBarColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGoldDiffBarColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor* + name: TempsGoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsGoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor + name: TempsGoldDiffBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGoldDiffBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor* + name: TempsGoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsGoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsGoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor + name: TempsTopBarBorderColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsTopBarBorderColor + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor() + nameWithType: EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor* + name: TempsTopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TempsTopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TempsTopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackground + name: TopBarBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackground + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackground + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackground + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackground* + name: TopBarBackground + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackground_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackground + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackground + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackground +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg* + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1* + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2* + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit + name: TopBarBackgroundColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit* + name: TopBarBackgroundColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit + name: TopBarBackgroundSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit* + name: TopBarBackgroundSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBackgroundSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamName + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamName + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamName + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamName* + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamName + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit + name: TopBarBlueTeamNameSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamNameSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit* + name: TopBarBlueTeamNameSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamNameSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore* + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit + name: TopBarBlueTeamScoreSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamScoreSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit* + name: TopBarBlueTeamScoreSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBlueTeamScoreSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBlueTeamScoreSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColor + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColor* + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColor + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorNotSet + name: TopBarBorderColorNotSet + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBorderColorNotSet + commentId: F:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorNotSet + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorNotSet + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBorderColorNotSet +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit + name: TopBarBorderColorSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBorderColorSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit* + name: TopBarBorderColorSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarBorderColorSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarBorderColorSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiant + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiant + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiant + nameWithType: EndGamePage.TextValueOverlayView3.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiant* + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiant + nameWithType: EndGamePage.TextValueOverlayView3.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit + name: TopBarGradiantSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarGradiantSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit* + name: TopBarGradiantSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarGradiantSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarGradiantSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamName + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamName + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamName + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamName* + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamName + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit + name: TopBarRedTeamNameSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamNameSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit* + name: TopBarRedTeamNameSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamNameSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamNameSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScore + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScore + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScore + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScore* + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScore + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit + name: TopBarRedTeamScoreSubmit() + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamScoreSubmit + commentId: M:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit() + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit() +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit* + name: TopBarRedTeamScoreSubmit + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarRedTeamScoreSubmit_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit + nameWithType: EndGamePage.TextValueOverlayView3.TopBarRedTeamScoreSubmit +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarTimerText + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarTimerText + commentId: P:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarTimerText + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarTimerText + nameWithType: EndGamePage.TextValueOverlayView3.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarTimerText* + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.html#OSL_Server_Pages_EndGame_EndGamePage_TextValueOverlayView3_TopBarTimerText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarTimerText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGamePage.TextValueOverlayView3.TopBarTimerText + nameWithType: EndGamePage.TextValueOverlayView3.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page + name: EndGameView1Page + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html + commentId: T:OSL_Server.Pages.EndGame.EndGameView1Page + fullName: OSL_Server.Pages.EndGame.EndGameView1Page + nameWithType: EndGameView1Page +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToAngle(System.Int32,System.Double,System.Int32,System.Double) + name: ConvertToAngle(Int32, Double, Int32, Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToAngle_System_Int32_System_Double_System_Int32_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToAngle(System.Int32,System.Double,System.Int32,System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToAngle(System.Int32, System.Double, System.Int32, System.Double) + nameWithType: EndGameView1Page.ConvertToAngle(Int32, Double, Int32, Double) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToAngle* + name: ConvertToAngle + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToAngle_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToAngle + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToAngle + nameWithType: EndGameView1Page.ConvertToAngle +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToHyp(System.Int32,System.Double,System.Int32,System.Double) + name: ConvertToHyp(Int32, Double, Int32, Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToHyp_System_Int32_System_Double_System_Int32_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToHyp(System.Int32,System.Double,System.Int32,System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToHyp(System.Int32, System.Double, System.Int32, System.Double) + nameWithType: EndGameView1Page.ConvertToHyp(Int32, Double, Int32, Double) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToHyp* + name: ConvertToHyp + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToHyp_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToHyp + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToHyp + nameWithType: EndGameView1Page.ConvertToHyp +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToK(System.Double) + name: ConvertToK(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToK_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToK(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToK(System.Double) + nameWithType: EndGameView1Page.ConvertToK(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToK* + name: ConvertToK + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToK_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToK + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToK + nameWithType: EndGameView1Page.ConvertToK +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString(System.Double) + name: ConvertToString(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToString_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString(System.Double) + nameWithType: EndGameView1Page.ConvertToString(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString(System.Int32) + name: ConvertToString(Int32) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToString_System_Int32_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString(System.Int32) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString(System.Int32) + nameWithType: EndGameView1Page.ConvertToString(Int32) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString* + name: ConvertToString + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToString_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToString + nameWithType: EndGameView1Page.ConvertToString +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToWidth(System.Int32) + name: ConvertToWidth(Int32) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToWidth_System_Int32_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToWidth(System.Int32) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToWidth(System.Int32) + nameWithType: EndGameView1Page.ConvertToWidth(Int32) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToWidth* + name: ConvertToWidth + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ConvertToWidth_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToWidth + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ConvertToWidth + nameWithType: EndGameView1Page.ConvertToWidth +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.CreateTabGold + name: CreateTabGold() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_CreateTabGold + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.CreateTabGold + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.CreateTabGold() + nameWithType: EndGameView1Page.CreateTabGold() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.CreateTabGold* + name: CreateTabGold + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_CreateTabGold_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.CreateTabGold + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.CreateTabGold + nameWithType: EndGameView1Page.CreateTabGold +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_formatingData + commentId: F:OSL_Server.Pages.EndGame.EndGameView1Page.formatingData + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.formatingData + nameWithType: EndGameView1Page.formatingData +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData + name: EndGameView1Page.FormatingData + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html + commentId: T:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData + nameWithType: EndGameView1Page.FormatingData +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColor + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColor + nameWithType: EndGameView1Page.FormatingData.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColor* + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColor + nameWithType: EndGameView1Page.FormatingData.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor1 + name: BackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor1* + name: BackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor2 + name: BackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor2* + name: BackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorDeg + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorDeg* + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent1 + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent1* + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent2 + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent2* + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColor + name: BansBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColor + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColor* + name: BansBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColor + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor1 + name: BansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor1* + name: BansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor2 + name: BansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor2* + name: BansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorDeg + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorDeg* + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent1 + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent1* + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent2 + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent2* + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBorderColor + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBorderColor + nameWithType: EndGameView1Page.FormatingData.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBorderColor* + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansBorderColor + nameWithType: EndGameView1Page.FormatingData.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansGradiant + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansGradiant + nameWithType: EndGameView1Page.FormatingData.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansGradiant* + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansGradiant + nameWithType: EndGameView1Page.FormatingData.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansTextColor + name: BansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansTextColor + nameWithType: EndGameView1Page.FormatingData.BansTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansTextColor* + name: BansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_BansTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.BansTextColor + nameWithType: EndGameView1Page.FormatingData.BansTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColor + name: ChampionInfoBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColor* + name: ChampionInfoBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 + name: ChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1* + name: ChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 + name: ChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2* + name: ChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg* + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1* + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2* + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueBarColor + name: ChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBlueBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueBarColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueBarColor* + name: ChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBlueBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueBarColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor + name: ChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBlueDegaTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor* + name: ChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBlueDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBorderColor + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBorderColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBorderColor* + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoBorderColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoGradiant + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoGradiant + nameWithType: EndGameView1Page.FormatingData.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoGradiant* + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoGradiant + nameWithType: EndGameView1Page.FormatingData.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedBarColor + name: ChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoRedBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedBarColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedBarColor* + name: ChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoRedBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedBarColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor + name: ChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoRedDegaTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor* + name: ChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoRedDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoText + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoText + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoText + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoText + nameWithType: EndGameView1Page.FormatingData.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoText* + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoText + nameWithType: EndGameView1Page.FormatingData.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoTextColor + name: ChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoTextColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoTextColor* + name: ChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_ChampionInfoTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.ChampionInfoTextColor + nameWithType: EndGameView1Page.FormatingData.ChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultPatch + nameWithType: EndGameView1Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultPatch + nameWithType: EndGameView1Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultRegion + nameWithType: EndGameView1Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.DefaultRegion + nameWithType: EndGameView1Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColor + name: GlobalStatsBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColor* + name: GlobalStatsBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 + name: GlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1* + name: GlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 + name: GlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2* + name: GlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg* + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1* + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2* + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBlueTextColor + name: GlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBlueTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBlueTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBlueTextColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBlueTextColor* + name: GlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBlueTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBlueTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBlueTextColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBorderColor + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBorderColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBorderColor* + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsBorderColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsGradiant + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsGradiant + nameWithType: EndGameView1Page.FormatingData.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsGradiant* + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsGradiant + nameWithType: EndGameView1Page.FormatingData.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsRedTextColor + name: GlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsRedTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsRedTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsRedTextColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsRedTextColor* + name: GlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsRedTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsRedTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsRedTextColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsTextColor + name: GlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsTextColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsTextColor* + name: GlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GlobalStatsTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GlobalStatsTextColor + nameWithType: EndGameView1Page.FormatingData.GlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColor + name: GoldDiffBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColor* + name: GoldDiffBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 + name: GoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1* + name: GoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 + name: GoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2* + name: GoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg* + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1* + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2* + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBarColor + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBarColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBarColor* + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBarColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor + name: GoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBluePointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor* + name: GoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBluePointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor + name: GoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBlueTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor* + name: GoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBlueTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBorderColor + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBorderColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBorderColor* + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffBorderColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffGradiant + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffGradiant + nameWithType: EndGameView1Page.FormatingData.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffGradiant* + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffGradiant + nameWithType: EndGameView1Page.FormatingData.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor + name: GoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffLinkPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor* + name: GoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffLinkPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor + name: GoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffRedPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor* + name: GoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffRedPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor + name: GoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffRedTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor* + name: GoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffRedTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor + name: GoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffStartEndPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor* + name: GoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffStartEndPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffText + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffText + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffText + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffText + nameWithType: EndGameView1Page.FormatingData.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffText* + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffText + nameWithType: EndGameView1Page.FormatingData.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffTextColor + name: GoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffTextColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffTextColor* + name: GoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffTextColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor + name: GoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffZeroPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor* + name: GoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffZeroPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor + name: GoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffZeroTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor* + name: GoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_GoldDiffZeroTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor + nameWithType: EndGameView1Page.FormatingData.GoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColor + name: TopBarBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColor + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColor* + name: TopBarBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColor + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 + name: TopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor1* + name: TopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 + name: TopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor2* + name: TopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorDeg + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorDeg* + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorDeg + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1* + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2* + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 + nameWithType: EndGameView1Page.FormatingData.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamName + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamName + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamName + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamName* + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamName + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamNameColor + name: TopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamNameColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamNameColor + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamNameColor* + name: TopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamNameColor + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScore + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScore + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScore + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScore* + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScore + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor + name: TopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamScoreColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor* + name: TopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor + name: TopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamWinLossColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor* + name: TopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBlueTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor + nameWithType: EndGameView1Page.FormatingData.TopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBorderColor + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBorderColor + nameWithType: EndGameView1Page.FormatingData.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBorderColor* + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarBorderColor + nameWithType: EndGameView1Page.FormatingData.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarGradiant + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarGradiant + nameWithType: EndGameView1Page.FormatingData.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarGradiant* + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarGradiant + nameWithType: EndGameView1Page.FormatingData.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamName + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamName + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamName + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamName* + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamName + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamNameColor + name: TopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamNameColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamNameColor + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamNameColor* + name: TopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamNameColor + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScore + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScore + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScore + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScore* + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScore + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScoreColor + name: TopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamScoreColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScoreColor + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScoreColor* + name: TopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamScoreColor + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor + name: TopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamWinLossColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor* + name: TopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarRedTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor + nameWithType: EndGameView1Page.FormatingData.TopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerColor + name: TopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarTimerColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerColor + nameWithType: EndGameView1Page.FormatingData.TopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerColor* + name: TopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarTimerColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerColor + nameWithType: EndGameView1Page.FormatingData.TopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerText + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarTimerText + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerText + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerText + nameWithType: EndGameView1Page.FormatingData.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerText* + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarTimerText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerText + nameWithType: EndGameView1Page.FormatingData.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerTextColor + name: TopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarTimerTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerTextColor + nameWithType: EndGameView1Page.FormatingData.TopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerTextColor* + name: TopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView1Page_FormatingData_TopBarTimerTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.FormatingData.TopBarTimerTextColor + nameWithType: EndGameView1Page.FormatingData.TopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillBlue + name: GetBaronKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetBaronKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillBlue() + nameWithType: EndGameView1Page.GetBaronKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillBlue* + name: GetBaronKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetBaronKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillBlue + nameWithType: EndGameView1Page.GetBaronKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillRed + name: GetBaronKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetBaronKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillRed() + nameWithType: EndGameView1Page.GetBaronKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillRed* + name: GetBaronKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetBaronKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetBaronKillRed + nameWithType: EndGameView1Page.GetBaronKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPath(System.String) + name: GetChampionPath(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetChampionPath_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPath(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPath(System.String) + nameWithType: EndGameView1Page.GetChampionPath(String) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPath* + name: GetChampionPath + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetChampionPath_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPath + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPath + nameWithType: EndGameView1Page.GetChampionPath +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPathByPath(System.String) + name: GetChampionPathByPath(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetChampionPathByPath_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPathByPath(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPathByPath(System.String) + nameWithType: EndGameView1Page.GetChampionPathByPath(String) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPathByPath* + name: GetChampionPathByPath + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetChampionPathByPath_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPathByPath + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetChampionPathByPath + nameWithType: EndGameView1Page.GetChampionPathByPath +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetDragonsKill(System.String) + name: GetDragonsKill(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetDragonsKill_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetDragonsKill(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetDragonsKill(System.String) + nameWithType: EndGameView1Page.GetDragonsKill(String) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetDragonsKill* + name: GetDragonsKill + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetDragonsKill_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetDragonsKill + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetDragonsKill + nameWithType: EndGameView1Page.GetDragonsKill +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillBlue + name: GetElderKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetElderKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillBlue() + nameWithType: EndGameView1Page.GetElderKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillBlue* + name: GetElderKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetElderKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillBlue + nameWithType: EndGameView1Page.GetElderKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillRed + name: GetElderKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetElderKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillRed() + nameWithType: EndGameView1Page.GetElderKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillRed* + name: GetElderKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetElderKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetElderKillRed + nameWithType: EndGameView1Page.GetElderKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldBlue + name: GetGoldBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetGoldBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldBlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldBlue() + nameWithType: EndGameView1Page.GetGoldBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldBlue* + name: GetGoldBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetGoldBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldBlue + nameWithType: EndGameView1Page.GetGoldBlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldRed + name: GetGoldRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetGoldRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldRed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldRed() + nameWithType: EndGameView1Page.GetGoldRed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldRed* + name: GetGoldRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetGoldRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetGoldRed + nameWithType: EndGameView1Page.GetGoldRed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillBlue + name: GetHeraldKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetHeraldKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillBlue() + nameWithType: EndGameView1Page.GetHeraldKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillBlue* + name: GetHeraldKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetHeraldKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillBlue + nameWithType: EndGameView1Page.GetHeraldKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillRed + name: GetHeraldKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetHeraldKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillRed() + nameWithType: EndGameView1Page.GetHeraldKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillRed* + name: GetHeraldKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetHeraldKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetHeraldKillRed + nameWithType: EndGameView1Page.GetHeraldKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDABlue + name: GetKDABlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetKDABlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetKDABlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDABlue() + nameWithType: EndGameView1Page.GetKDABlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDABlue* + name: GetKDABlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetKDABlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetKDABlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDABlue + nameWithType: EndGameView1Page.GetKDABlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDARed + name: GetKDARed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetKDARed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetKDARed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDARed() + nameWithType: EndGameView1Page.GetKDARed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDARed* + name: GetKDARed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetKDARed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetKDARed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetKDARed + nameWithType: EndGameView1Page.GetKDARed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimer + name: GetTimer() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTimer + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetTimer + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimer() + nameWithType: EndGameView1Page.GetTimer() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimer* + name: GetTimer + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTimer_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetTimer + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimer + nameWithType: EndGameView1Page.GetTimer +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerDiv(System.Double) + name: GetTimerDiv(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTimerDiv_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerDiv(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerDiv(System.Double) + nameWithType: EndGameView1Page.GetTimerDiv(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerDiv* + name: GetTimerDiv + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTimerDiv_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerDiv + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerDiv + nameWithType: EndGameView1Page.GetTimerDiv +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerInt + name: GetTimerInt() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTimerInt + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerInt + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerInt() + nameWithType: EndGameView1Page.GetTimerInt() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerInt* + name: GetTimerInt + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTimerInt_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerInt + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTimerInt + nameWithType: EndGameView1Page.GetTimerInt +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillBlue + name: GetTowerKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTowerKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillBlue() + nameWithType: EndGameView1Page.GetTowerKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillBlue* + name: GetTowerKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTowerKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillBlue + nameWithType: EndGameView1Page.GetTowerKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillRed + name: GetTowerKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTowerKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillRed() + nameWithType: EndGameView1Page.GetTowerKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillRed* + name: GetTowerKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetTowerKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetTowerKillRed + nameWithType: EndGameView1Page.GetTowerKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossBlue + name: GetWinLossBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetWinLossBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossBlue + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossBlue() + nameWithType: EndGameView1Page.GetWinLossBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossBlue* + name: GetWinLossBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetWinLossBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossBlue + nameWithType: EndGameView1Page.GetWinLossBlue +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossRed + name: GetWinLossRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetWinLossRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossRed + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossRed() + nameWithType: EndGameView1Page.GetWinLossRed() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossRed* + name: GetWinLossRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_GetWinLossRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.GetWinLossRed + nameWithType: EndGameView1Page.GetWinLossRed +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.goldDiff + name: goldDiff + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_goldDiff + commentId: F:OSL_Server.Pages.EndGame.EndGameView1Page.goldDiff + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.goldDiff + nameWithType: EndGameView1Page.goldDiff +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.MaxGold + name: MaxGold() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_MaxGold + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.MaxGold + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.MaxGold() + nameWithType: EndGameView1Page.MaxGold() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.MaxGold* + name: MaxGold + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_MaxGold_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.MaxGold + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.MaxGold + nameWithType: EndGameView1Page.MaxGold +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ResetColor + commentId: M:OSL_Server.Pages.EndGame.EndGameView1Page.ResetColor + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ResetColor() + nameWithType: EndGameView1Page.ResetColor() +- uid: OSL_Server.Pages.EndGame.EndGameView1Page.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView1Page.html#OSL_Server_Pages_EndGame_EndGameView1Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView1Page.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView1Page.ResetColor + nameWithType: EndGameView1Page.ResetColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page + name: EndGameView2Page + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html + commentId: T:OSL_Server.Pages.EndGame.EndGameView2Page + fullName: OSL_Server.Pages.EndGame.EndGameView2Page + nameWithType: EndGameView2Page +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToAngle(System.Int32,System.Double,System.Int32,System.Double) + name: ConvertToAngle(Int32, Double, Int32, Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToAngle_System_Int32_System_Double_System_Int32_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToAngle(System.Int32,System.Double,System.Int32,System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToAngle(System.Int32, System.Double, System.Int32, System.Double) + nameWithType: EndGameView2Page.ConvertToAngle(Int32, Double, Int32, Double) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToAngle* + name: ConvertToAngle + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToAngle_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToAngle + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToAngle + nameWithType: EndGameView2Page.ConvertToAngle +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToHyp(System.Int32,System.Double,System.Int32,System.Double) + name: ConvertToHyp(Int32, Double, Int32, Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToHyp_System_Int32_System_Double_System_Int32_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToHyp(System.Int32,System.Double,System.Int32,System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToHyp(System.Int32, System.Double, System.Int32, System.Double) + nameWithType: EndGameView2Page.ConvertToHyp(Int32, Double, Int32, Double) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToHyp* + name: ConvertToHyp + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToHyp_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToHyp + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToHyp + nameWithType: EndGameView2Page.ConvertToHyp +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToK(System.Double) + name: ConvertToK(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToK_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToK(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToK(System.Double) + nameWithType: EndGameView2Page.ConvertToK(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToK* + name: ConvertToK + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToK_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToK + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToK + nameWithType: EndGameView2Page.ConvertToK +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString(System.Double) + name: ConvertToString(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToString_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString(System.Double) + nameWithType: EndGameView2Page.ConvertToString(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString(System.Int32) + name: ConvertToString(Int32) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToString_System_Int32_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString(System.Int32) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString(System.Int32) + nameWithType: EndGameView2Page.ConvertToString(Int32) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString* + name: ConvertToString + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToString_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToString + nameWithType: EndGameView2Page.ConvertToString +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToWidth(System.Int32) + name: ConvertToWidth(Int32) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToWidth_System_Int32_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToWidth(System.Int32) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToWidth(System.Int32) + nameWithType: EndGameView2Page.ConvertToWidth(Int32) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToWidth* + name: ConvertToWidth + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ConvertToWidth_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToWidth + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ConvertToWidth + nameWithType: EndGameView2Page.ConvertToWidth +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.CreateTabGold + name: CreateTabGold() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_CreateTabGold + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.CreateTabGold + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.CreateTabGold() + nameWithType: EndGameView2Page.CreateTabGold() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.CreateTabGold* + name: CreateTabGold + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_CreateTabGold_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.CreateTabGold + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.CreateTabGold + nameWithType: EndGameView2Page.CreateTabGold +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_formatingData + commentId: F:OSL_Server.Pages.EndGame.EndGameView2Page.formatingData + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.formatingData + nameWithType: EndGameView2Page.formatingData +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData + name: EndGameView2Page.FormatingData + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html + commentId: T:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData + nameWithType: EndGameView2Page.FormatingData +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColor + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColor + nameWithType: EndGameView2Page.FormatingData.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColor* + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColor + nameWithType: EndGameView2Page.FormatingData.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor1 + name: BackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor1* + name: BackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor2 + name: BackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor2* + name: BackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorDeg + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorDeg* + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent1 + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent1* + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent2 + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent2* + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColor + name: BansBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColor + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColor* + name: BansBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColor + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor1 + name: BansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor1* + name: BansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor2 + name: BansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor2* + name: BansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorDeg + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorDeg* + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent1 + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent1* + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent2 + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent2* + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBorderColor + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBorderColor + nameWithType: EndGameView2Page.FormatingData.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBorderColor* + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansBorderColor + nameWithType: EndGameView2Page.FormatingData.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansGradiant + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansGradiant + nameWithType: EndGameView2Page.FormatingData.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansGradiant* + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansGradiant + nameWithType: EndGameView2Page.FormatingData.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansTextColor + name: BansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansTextColor + nameWithType: EndGameView2Page.FormatingData.BansTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansTextColor* + name: BansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_BansTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.BansTextColor + nameWithType: EndGameView2Page.FormatingData.BansTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColor + name: ChampionInfoBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColor* + name: ChampionInfoBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 + name: ChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1* + name: ChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 + name: ChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2* + name: ChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg* + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1* + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2* + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueBarColor + name: ChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBlueBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueBarColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueBarColor* + name: ChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBlueBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueBarColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor + name: ChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBlueDegaTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor* + name: ChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBlueDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBorderColor + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBorderColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBorderColor* + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoBorderColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoGradiant + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoGradiant + nameWithType: EndGameView2Page.FormatingData.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoGradiant* + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoGradiant + nameWithType: EndGameView2Page.FormatingData.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedBarColor + name: ChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoRedBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedBarColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedBarColor* + name: ChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoRedBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedBarColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor + name: ChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoRedDegaTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor* + name: ChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoRedDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoText + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoText + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoText + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoText + nameWithType: EndGameView2Page.FormatingData.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoText* + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoText + nameWithType: EndGameView2Page.FormatingData.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoTextColor + name: ChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoTextColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoTextColor* + name: ChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_ChampionInfoTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.ChampionInfoTextColor + nameWithType: EndGameView2Page.FormatingData.ChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultPatch + nameWithType: EndGameView2Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultPatch + nameWithType: EndGameView2Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultRegion + nameWithType: EndGameView2Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.DefaultRegion + nameWithType: EndGameView2Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColor + name: GlobalStatsBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColor* + name: GlobalStatsBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 + name: GlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1* + name: GlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 + name: GlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2* + name: GlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg* + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1* + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2* + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBlueTextColor + name: GlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBlueTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBlueTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBlueTextColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBlueTextColor* + name: GlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBlueTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBlueTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBlueTextColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBorderColor + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBorderColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBorderColor* + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsBorderColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsGradiant + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsGradiant + nameWithType: EndGameView2Page.FormatingData.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsGradiant* + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsGradiant + nameWithType: EndGameView2Page.FormatingData.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsRedTextColor + name: GlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsRedTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsRedTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsRedTextColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsRedTextColor* + name: GlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsRedTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsRedTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsRedTextColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsTextColor + name: GlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsTextColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsTextColor* + name: GlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GlobalStatsTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GlobalStatsTextColor + nameWithType: EndGameView2Page.FormatingData.GlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColor + name: GoldDiffBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColor* + name: GoldDiffBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 + name: GoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1* + name: GoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 + name: GoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2* + name: GoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg* + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1* + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2* + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBarColor + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBarColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBarColor* + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBarColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor + name: GoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBluePointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor* + name: GoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBluePointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor + name: GoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBlueTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor* + name: GoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBlueTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBorderColor + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBorderColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBorderColor* + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffBorderColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffGradiant + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffGradiant + nameWithType: EndGameView2Page.FormatingData.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffGradiant* + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffGradiant + nameWithType: EndGameView2Page.FormatingData.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor + name: GoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffLinkPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor* + name: GoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffLinkPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor + name: GoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffRedPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor* + name: GoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffRedPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor + name: GoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffRedTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor* + name: GoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffRedTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor + name: GoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffStartEndPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor* + name: GoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffStartEndPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffText + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffText + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffText + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffText + nameWithType: EndGameView2Page.FormatingData.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffText* + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffText + nameWithType: EndGameView2Page.FormatingData.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffTextColor + name: GoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffTextColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffTextColor* + name: GoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffTextColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor + name: GoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffZeroPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor* + name: GoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffZeroPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor + name: GoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffZeroTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor* + name: GoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_GoldDiffZeroTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor + nameWithType: EndGameView2Page.FormatingData.GoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColor + name: TopBarBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColor + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColor* + name: TopBarBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColor + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 + name: TopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor1* + name: TopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 + name: TopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor2* + name: TopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorDeg + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorDeg* + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorDeg + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1* + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2* + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 + nameWithType: EndGameView2Page.FormatingData.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamName + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamName + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamName + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamName* + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamName + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamNameColor + name: TopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamNameColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamNameColor + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamNameColor* + name: TopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamNameColor + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScore + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScore + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScore + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScore* + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScore + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor + name: TopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamScoreColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor* + name: TopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor + name: TopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamWinLossColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor* + name: TopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBlueTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor + nameWithType: EndGameView2Page.FormatingData.TopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBorderColor + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBorderColor + nameWithType: EndGameView2Page.FormatingData.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBorderColor* + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarBorderColor + nameWithType: EndGameView2Page.FormatingData.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarGradiant + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarGradiant + nameWithType: EndGameView2Page.FormatingData.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarGradiant* + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarGradiant + nameWithType: EndGameView2Page.FormatingData.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamName + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamName + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamName + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamName* + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamName + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamNameColor + name: TopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamNameColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamNameColor + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamNameColor* + name: TopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamNameColor + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScore + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScore + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScore + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScore* + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScore + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScoreColor + name: TopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamScoreColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScoreColor + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScoreColor* + name: TopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamScoreColor + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor + name: TopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamWinLossColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor* + name: TopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarRedTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor + nameWithType: EndGameView2Page.FormatingData.TopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerColor + name: TopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarTimerColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerColor + nameWithType: EndGameView2Page.FormatingData.TopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerColor* + name: TopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarTimerColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerColor + nameWithType: EndGameView2Page.FormatingData.TopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerText + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarTimerText + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerText + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerText + nameWithType: EndGameView2Page.FormatingData.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerText* + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarTimerText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerText + nameWithType: EndGameView2Page.FormatingData.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerTextColor + name: TopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarTimerTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerTextColor + nameWithType: EndGameView2Page.FormatingData.TopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerTextColor* + name: TopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView2Page_FormatingData_TopBarTimerTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.FormatingData.TopBarTimerTextColor + nameWithType: EndGameView2Page.FormatingData.TopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillBlue + name: GetBaronKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetBaronKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillBlue() + nameWithType: EndGameView2Page.GetBaronKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillBlue* + name: GetBaronKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetBaronKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillBlue + nameWithType: EndGameView2Page.GetBaronKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillRed + name: GetBaronKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetBaronKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillRed() + nameWithType: EndGameView2Page.GetBaronKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillRed* + name: GetBaronKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetBaronKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetBaronKillRed + nameWithType: EndGameView2Page.GetBaronKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPath(System.String) + name: GetChampionPath(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetChampionPath_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPath(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPath(System.String) + nameWithType: EndGameView2Page.GetChampionPath(String) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPath* + name: GetChampionPath + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetChampionPath_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPath + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPath + nameWithType: EndGameView2Page.GetChampionPath +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPathByPath(System.String) + name: GetChampionPathByPath(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetChampionPathByPath_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPathByPath(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPathByPath(System.String) + nameWithType: EndGameView2Page.GetChampionPathByPath(String) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPathByPath* + name: GetChampionPathByPath + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetChampionPathByPath_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPathByPath + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetChampionPathByPath + nameWithType: EndGameView2Page.GetChampionPathByPath +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetDragonsKill(System.String) + name: GetDragonsKill(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetDragonsKill_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetDragonsKill(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetDragonsKill(System.String) + nameWithType: EndGameView2Page.GetDragonsKill(String) +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetDragonsKill* + name: GetDragonsKill + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetDragonsKill_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetDragonsKill + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetDragonsKill + nameWithType: EndGameView2Page.GetDragonsKill +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillBlue + name: GetElderKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetElderKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillBlue() + nameWithType: EndGameView2Page.GetElderKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillBlue* + name: GetElderKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetElderKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillBlue + nameWithType: EndGameView2Page.GetElderKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillRed + name: GetElderKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetElderKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillRed() + nameWithType: EndGameView2Page.GetElderKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillRed* + name: GetElderKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetElderKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetElderKillRed + nameWithType: EndGameView2Page.GetElderKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldBlue + name: GetGoldBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetGoldBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldBlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldBlue() + nameWithType: EndGameView2Page.GetGoldBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldBlue* + name: GetGoldBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetGoldBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldBlue + nameWithType: EndGameView2Page.GetGoldBlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldRed + name: GetGoldRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetGoldRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldRed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldRed() + nameWithType: EndGameView2Page.GetGoldRed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldRed* + name: GetGoldRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetGoldRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetGoldRed + nameWithType: EndGameView2Page.GetGoldRed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillBlue + name: GetHeraldKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetHeraldKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillBlue() + nameWithType: EndGameView2Page.GetHeraldKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillBlue* + name: GetHeraldKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetHeraldKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillBlue + nameWithType: EndGameView2Page.GetHeraldKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillRed + name: GetHeraldKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetHeraldKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillRed() + nameWithType: EndGameView2Page.GetHeraldKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillRed* + name: GetHeraldKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetHeraldKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetHeraldKillRed + nameWithType: EndGameView2Page.GetHeraldKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDABlue + name: GetKDABlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetKDABlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetKDABlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDABlue() + nameWithType: EndGameView2Page.GetKDABlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDABlue* + name: GetKDABlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetKDABlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetKDABlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDABlue + nameWithType: EndGameView2Page.GetKDABlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDARed + name: GetKDARed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetKDARed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetKDARed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDARed() + nameWithType: EndGameView2Page.GetKDARed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDARed* + name: GetKDARed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetKDARed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetKDARed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetKDARed + nameWithType: EndGameView2Page.GetKDARed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimer + name: GetTimer() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTimer + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetTimer + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimer() + nameWithType: EndGameView2Page.GetTimer() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimer* + name: GetTimer + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTimer_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetTimer + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimer + nameWithType: EndGameView2Page.GetTimer +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimerInt + name: GetTimerInt() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTimerInt + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetTimerInt + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimerInt() + nameWithType: EndGameView2Page.GetTimerInt() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimerInt* + name: GetTimerInt + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTimerInt_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetTimerInt + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTimerInt + nameWithType: EndGameView2Page.GetTimerInt +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillBlue + name: GetTowerKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTowerKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillBlue() + nameWithType: EndGameView2Page.GetTowerKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillBlue* + name: GetTowerKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTowerKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillBlue + nameWithType: EndGameView2Page.GetTowerKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillRed + name: GetTowerKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTowerKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillRed() + nameWithType: EndGameView2Page.GetTowerKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillRed* + name: GetTowerKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetTowerKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetTowerKillRed + nameWithType: EndGameView2Page.GetTowerKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossBlue + name: GetWinLossBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetWinLossBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossBlue + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossBlue() + nameWithType: EndGameView2Page.GetWinLossBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossBlue* + name: GetWinLossBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetWinLossBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossBlue + nameWithType: EndGameView2Page.GetWinLossBlue +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossRed + name: GetWinLossRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetWinLossRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossRed + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossRed() + nameWithType: EndGameView2Page.GetWinLossRed() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossRed* + name: GetWinLossRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_GetWinLossRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.GetWinLossRed + nameWithType: EndGameView2Page.GetWinLossRed +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.goldDiff + name: goldDiff + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_goldDiff + commentId: F:OSL_Server.Pages.EndGame.EndGameView2Page.goldDiff + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.goldDiff + nameWithType: EndGameView2Page.goldDiff +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.MaxGold + name: MaxGold() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_MaxGold + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.MaxGold + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.MaxGold() + nameWithType: EndGameView2Page.MaxGold() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.MaxGold* + name: MaxGold + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_MaxGold_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.MaxGold + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.MaxGold + nameWithType: EndGameView2Page.MaxGold +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ResetColor + commentId: M:OSL_Server.Pages.EndGame.EndGameView2Page.ResetColor + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ResetColor() + nameWithType: EndGameView2Page.ResetColor() +- uid: OSL_Server.Pages.EndGame.EndGameView2Page.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView2Page.html#OSL_Server_Pages_EndGame_EndGameView2Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView2Page.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView2Page.ResetColor + nameWithType: EndGameView2Page.ResetColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page + name: EndGameView3Page + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html + commentId: T:OSL_Server.Pages.EndGame.EndGameView3Page + fullName: OSL_Server.Pages.EndGame.EndGameView3Page + nameWithType: EndGameView3Page +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToAngle(System.Double,System.Double,System.Double,System.Double) + name: ConvertToAngle(Double, Double, Double, Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToAngle_System_Double_System_Double_System_Double_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToAngle(System.Double,System.Double,System.Double,System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToAngle(System.Double, System.Double, System.Double, System.Double) + nameWithType: EndGameView3Page.ConvertToAngle(Double, Double, Double, Double) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToAngle* + name: ConvertToAngle + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToAngle_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToAngle + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToAngle + nameWithType: EndGameView3Page.ConvertToAngle +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToHyp(System.Double,System.Double,System.Double,System.Double) + name: ConvertToHyp(Double, Double, Double, Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToHyp_System_Double_System_Double_System_Double_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToHyp(System.Double,System.Double,System.Double,System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToHyp(System.Double, System.Double, System.Double, System.Double) + nameWithType: EndGameView3Page.ConvertToHyp(Double, Double, Double, Double) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToHyp* + name: ConvertToHyp + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToHyp_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToHyp + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToHyp + nameWithType: EndGameView3Page.ConvertToHyp +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToK(System.Double) + name: ConvertToK(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToK_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToK(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToK(System.Double) + nameWithType: EndGameView3Page.ConvertToK(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToK* + name: ConvertToK + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToK_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToK + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToK + nameWithType: EndGameView3Page.ConvertToK +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString(System.Double) + name: ConvertToString(Double) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToString_System_Double_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString(System.Double) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString(System.Double) + nameWithType: EndGameView3Page.ConvertToString(Double) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString(System.Int32) + name: ConvertToString(Int32) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToString_System_Int32_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString(System.Int32) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString(System.Int32) + nameWithType: EndGameView3Page.ConvertToString(Int32) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString* + name: ConvertToString + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToString_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToString + nameWithType: EndGameView3Page.ConvertToString +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToWidth(System.Int32) + name: ConvertToWidth(Int32) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToWidth_System_Int32_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToWidth(System.Int32) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToWidth(System.Int32) + nameWithType: EndGameView3Page.ConvertToWidth(Int32) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToWidth* + name: ConvertToWidth + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ConvertToWidth_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToWidth + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ConvertToWidth + nameWithType: EndGameView3Page.ConvertToWidth +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.CreateTabGold + name: CreateTabGold() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_CreateTabGold + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.CreateTabGold + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.CreateTabGold() + nameWithType: EndGameView3Page.CreateTabGold() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.CreateTabGold* + name: CreateTabGold + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_CreateTabGold_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.CreateTabGold + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.CreateTabGold + nameWithType: EndGameView3Page.CreateTabGold +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_formatingData + commentId: F:OSL_Server.Pages.EndGame.EndGameView3Page.formatingData + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.formatingData + nameWithType: EndGameView3Page.formatingData +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData + name: EndGameView3Page.FormatingData + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html + commentId: T:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData + nameWithType: EndGameView3Page.FormatingData +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColor + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColor + nameWithType: EndGameView3Page.FormatingData.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColor* + name: BackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColor + nameWithType: EndGameView3Page.FormatingData.BackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor1 + name: BackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor1* + name: BackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor2 + name: BackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor2* + name: BackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorDeg + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorDeg* + name: BackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.BackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent1 + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent1* + name: BackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent2 + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent2* + name: BackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.BackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColor + name: BansBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColor + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColor* + name: BansBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColor + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor1 + name: BansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor1* + name: BansBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor2 + name: BansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor2* + name: BansBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorDeg + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorDeg* + name: BansBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent1 + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent1* + name: BansBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent2 + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent2* + name: BansBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.BansBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBorderColor + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBorderColor + nameWithType: EndGameView3Page.FormatingData.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBorderColor* + name: BansBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansBorderColor + nameWithType: EndGameView3Page.FormatingData.BansBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansGradiant + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansGradiant + nameWithType: EndGameView3Page.FormatingData.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansGradiant* + name: BansGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansGradiant + nameWithType: EndGameView3Page.FormatingData.BansGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansTextColor + name: BansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansTextColor + nameWithType: EndGameView3Page.FormatingData.BansTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansTextColor* + name: BansTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_BansTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.BansTextColor + nameWithType: EndGameView3Page.FormatingData.BansTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColor + name: ChampionInfoBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColor* + name: ChampionInfoBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 + name: ChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1* + name: ChampionInfoBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 + name: ChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2* + name: ChampionInfoBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg* + name: ChampionInfoBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1* + name: ChampionInfoBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2* + name: ChampionInfoBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueBarColor + name: ChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBlueBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueBarColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueBarColor* + name: ChampionInfoBlueBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBlueBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueBarColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBlueBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor + name: ChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBlueDegaTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor* + name: ChampionInfoBlueDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBlueDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBlueDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBorderColor + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBorderColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBorderColor* + name: ChampionInfoBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoBorderColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoGradiant + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoGradiant + nameWithType: EndGameView3Page.FormatingData.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoGradiant* + name: ChampionInfoGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoGradiant + nameWithType: EndGameView3Page.FormatingData.ChampionInfoGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedBarColor + name: ChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoRedBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedBarColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedBarColor* + name: ChampionInfoRedBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoRedBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedBarColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoRedBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor + name: ChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoRedDegaTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor* + name: ChampionInfoRedDegaTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoRedDegaTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoRedDegaTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoText + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoText + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoText + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoText + nameWithType: EndGameView3Page.FormatingData.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoText* + name: ChampionInfoText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoText + nameWithType: EndGameView3Page.FormatingData.ChampionInfoText +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoTextColor + name: ChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoTextColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoTextColor* + name: ChampionInfoTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_ChampionInfoTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.ChampionInfoTextColor + nameWithType: EndGameView3Page.FormatingData.ChampionInfoTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultPatch + nameWithType: EndGameView3Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultPatch + nameWithType: EndGameView3Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultRegion + nameWithType: EndGameView3Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.DefaultRegion + nameWithType: EndGameView3Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColor + name: GlobalStatsBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColor* + name: GlobalStatsBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 + name: GlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1* + name: GlobalStatsBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 + name: GlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2* + name: GlobalStatsBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg* + name: GlobalStatsBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1* + name: GlobalStatsBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2* + name: GlobalStatsBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBlueTextColor + name: GlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBlueTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBlueTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBlueTextColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBlueTextColor* + name: GlobalStatsBlueTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBlueTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBlueTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBlueTextColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBlueTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBorderColor + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBorderColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBorderColor* + name: GlobalStatsBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsBorderColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsGradiant + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsGradiant + nameWithType: EndGameView3Page.FormatingData.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsGradiant* + name: GlobalStatsGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsGradiant + nameWithType: EndGameView3Page.FormatingData.GlobalStatsGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsRedTextColor + name: GlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsRedTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsRedTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsRedTextColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsRedTextColor* + name: GlobalStatsRedTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsRedTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsRedTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsRedTextColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsRedTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsSeparationColor + name: GlobalStatsSeparationColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsSeparationColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsSeparationColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsSeparationColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsSeparationColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsSeparationColor* + name: GlobalStatsSeparationColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsSeparationColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsSeparationColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsSeparationColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsSeparationColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsTextColor + name: GlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsTextColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsTextColor* + name: GlobalStatsTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GlobalStatsTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GlobalStatsTextColor + nameWithType: EndGameView3Page.FormatingData.GlobalStatsTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColor + name: GoldDiffBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColor* + name: GoldDiffBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 + name: GoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1* + name: GoldDiffBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 + name: GoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2* + name: GoldDiffBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg* + name: GoldDiffBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1* + name: GoldDiffBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2* + name: GoldDiffBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.GoldDiffBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBarColor + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBarColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBarColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBarColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBarColor* + name: GoldDiffBarColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBarColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBarColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBarColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBarColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor + name: GoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBluePointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor* + name: GoldDiffBluePointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBluePointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBluePointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor + name: GoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBlueTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor* + name: GoldDiffBlueTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBlueTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBlueTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBorderColor + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBorderColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBorderColor* + name: GoldDiffBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffBorderColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffGradiant + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffGradiant + nameWithType: EndGameView3Page.FormatingData.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffGradiant* + name: GoldDiffGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffGradiant + nameWithType: EndGameView3Page.FormatingData.GoldDiffGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor + name: GoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffLinkPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor* + name: GoldDiffLinkPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffLinkPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffLinkPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor + name: GoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffRedPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor* + name: GoldDiffRedPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffRedPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffRedPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor + name: GoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffRedTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor* + name: GoldDiffRedTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffRedTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffRedTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor + name: GoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffStartEndPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor* + name: GoldDiffStartEndPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffStartEndPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffStartEndPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffText + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffText + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffText + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffText + nameWithType: EndGameView3Page.FormatingData.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffText* + name: GoldDiffText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffText + nameWithType: EndGameView3Page.FormatingData.GoldDiffText +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffTextColor + name: GoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffTextColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffTextColor* + name: GoldDiffTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffTextColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor + name: GoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffZeroPointGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor* + name: GoldDiffZeroPointGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffZeroPointGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffZeroPointGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor + name: GoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffZeroTextGoldColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor* + name: GoldDiffZeroTextGoldColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_GoldDiffZeroTextGoldColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor + nameWithType: EndGameView3Page.FormatingData.GoldDiffZeroTextGoldColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColor + name: TopBarBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColor + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColor* + name: TopBarBackgroundColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColor + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 + name: TopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorColor1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor1* + name: TopBarBackgroundColorColor1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorColor1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorColor1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 + name: TopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorColor2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor2* + name: TopBarBackgroundColorColor2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorColor2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorColor2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorDeg + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorDeg + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorDeg + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorDeg* + name: TopBarBackgroundColorDeg + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorDeg_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorDeg + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorDeg + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorDeg +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorPercent1 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1* + name: TopBarBackgroundColorPercent1 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorPercent1_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorPercent1 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorPercent2 + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2* + name: TopBarBackgroundColorPercent2 + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBackgroundColorPercent2_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 + nameWithType: EndGameView3Page.FormatingData.TopBarBackgroundColorPercent2 +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamName + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamName + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamName + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamName* + name: TopBarBlueTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamName + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamNameColor + name: TopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamNameColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamNameColor + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamNameColor* + name: TopBarBlueTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamNameColor + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScore + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScore + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScore + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScore* + name: TopBarBlueTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScore + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor + name: TopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamScoreColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor* + name: TopBarBlueTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor + name: TopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamWinLossColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor* + name: TopBarBlueTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBlueTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor + nameWithType: EndGameView3Page.FormatingData.TopBarBlueTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBorderColor + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBorderColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBorderColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBorderColor + nameWithType: EndGameView3Page.FormatingData.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBorderColor* + name: TopBarBorderColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarBorderColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBorderColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarBorderColor + nameWithType: EndGameView3Page.FormatingData.TopBarBorderColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarGradiant + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarGradiant + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarGradiant + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarGradiant + nameWithType: EndGameView3Page.FormatingData.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarGradiant* + name: TopBarGradiant + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarGradiant_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarGradiant + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarGradiant + nameWithType: EndGameView3Page.FormatingData.TopBarGradiant +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamName + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamName + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamName + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamName + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamName* + name: TopBarRedTeamName + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamName_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamName + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamName + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamName +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamNameColor + name: TopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamNameColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamNameColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamNameColor + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamNameColor* + name: TopBarRedTeamNameColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamNameColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamNameColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamNameColor + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamNameColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScore + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamScore + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScore + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScore + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScore* + name: TopBarRedTeamScore + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamScore_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScore + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScore + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamScore +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScoreColor + name: TopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamScoreColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScoreColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScoreColor + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScoreColor* + name: TopBarRedTeamScoreColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamScoreColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScoreColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamScoreColor + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamScoreColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor + name: TopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamWinLossColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor* + name: TopBarRedTeamWinLossColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarRedTeamWinLossColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor + nameWithType: EndGameView3Page.FormatingData.TopBarRedTeamWinLossColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerColor + name: TopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarTimerColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerColor + nameWithType: EndGameView3Page.FormatingData.TopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerColor* + name: TopBarTimerColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarTimerColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerColor + nameWithType: EndGameView3Page.FormatingData.TopBarTimerColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerText + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarTimerText + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerText + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerText + nameWithType: EndGameView3Page.FormatingData.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerText* + name: TopBarTimerText + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarTimerText_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerText + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerText + nameWithType: EndGameView3Page.FormatingData.TopBarTimerText +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerTextColor + name: TopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarTimerTextColor + commentId: P:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerTextColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerTextColor + nameWithType: EndGameView3Page.FormatingData.TopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerTextColor* + name: TopBarTimerTextColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.html#OSL_Server_Pages_EndGame_EndGameView3Page_FormatingData_TopBarTimerTextColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerTextColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.FormatingData.TopBarTimerTextColor + nameWithType: EndGameView3Page.FormatingData.TopBarTimerTextColor +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillBlue + name: GetBaronKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetBaronKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillBlue() + nameWithType: EndGameView3Page.GetBaronKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillBlue* + name: GetBaronKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetBaronKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillBlue + nameWithType: EndGameView3Page.GetBaronKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillRed + name: GetBaronKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetBaronKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillRed() + nameWithType: EndGameView3Page.GetBaronKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillRed* + name: GetBaronKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetBaronKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetBaronKillRed + nameWithType: EndGameView3Page.GetBaronKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPath(System.String) + name: GetChampionPath(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetChampionPath_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPath(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPath(System.String) + nameWithType: EndGameView3Page.GetChampionPath(String) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPath* + name: GetChampionPath + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetChampionPath_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPath + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPath + nameWithType: EndGameView3Page.GetChampionPath +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPathByPath(System.String) + name: GetChampionPathByPath(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetChampionPathByPath_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPathByPath(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPathByPath(System.String) + nameWithType: EndGameView3Page.GetChampionPathByPath(String) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPathByPath* + name: GetChampionPathByPath + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetChampionPathByPath_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPathByPath + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetChampionPathByPath + nameWithType: EndGameView3Page.GetChampionPathByPath +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetDragonsKill(System.String) + name: GetDragonsKill(String) + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetDragonsKill_System_String_ + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetDragonsKill(System.String) + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetDragonsKill(System.String) + nameWithType: EndGameView3Page.GetDragonsKill(String) +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetDragonsKill* + name: GetDragonsKill + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetDragonsKill_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetDragonsKill + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetDragonsKill + nameWithType: EndGameView3Page.GetDragonsKill +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillBlue + name: GetElderKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetElderKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillBlue() + nameWithType: EndGameView3Page.GetElderKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillBlue* + name: GetElderKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetElderKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillBlue + nameWithType: EndGameView3Page.GetElderKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillRed + name: GetElderKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetElderKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillRed() + nameWithType: EndGameView3Page.GetElderKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillRed* + name: GetElderKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetElderKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetElderKillRed + nameWithType: EndGameView3Page.GetElderKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldBlue + name: GetGoldBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetGoldBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldBlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldBlue() + nameWithType: EndGameView3Page.GetGoldBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldBlue* + name: GetGoldBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetGoldBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldBlue + nameWithType: EndGameView3Page.GetGoldBlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldRed + name: GetGoldRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetGoldRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldRed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldRed() + nameWithType: EndGameView3Page.GetGoldRed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldRed* + name: GetGoldRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetGoldRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetGoldRed + nameWithType: EndGameView3Page.GetGoldRed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillBlue + name: GetHeraldKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetHeraldKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillBlue() + nameWithType: EndGameView3Page.GetHeraldKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillBlue* + name: GetHeraldKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetHeraldKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillBlue + nameWithType: EndGameView3Page.GetHeraldKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillRed + name: GetHeraldKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetHeraldKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillRed() + nameWithType: EndGameView3Page.GetHeraldKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillRed* + name: GetHeraldKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetHeraldKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetHeraldKillRed + nameWithType: EndGameView3Page.GetHeraldKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDABlue + name: GetKDABlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetKDABlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetKDABlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDABlue() + nameWithType: EndGameView3Page.GetKDABlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDABlue* + name: GetKDABlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetKDABlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetKDABlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDABlue + nameWithType: EndGameView3Page.GetKDABlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDARed + name: GetKDARed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetKDARed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetKDARed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDARed() + nameWithType: EndGameView3Page.GetKDARed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDARed* + name: GetKDARed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetKDARed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetKDARed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetKDARed + nameWithType: EndGameView3Page.GetKDARed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimer + name: GetTimer() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTimer + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetTimer + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimer() + nameWithType: EndGameView3Page.GetTimer() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimer* + name: GetTimer + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTimer_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetTimer + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimer + nameWithType: EndGameView3Page.GetTimer +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimerInt + name: GetTimerInt() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTimerInt + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetTimerInt + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimerInt() + nameWithType: EndGameView3Page.GetTimerInt() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimerInt* + name: GetTimerInt + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTimerInt_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetTimerInt + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTimerInt + nameWithType: EndGameView3Page.GetTimerInt +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillBlue + name: GetTowerKillBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTowerKillBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillBlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillBlue() + nameWithType: EndGameView3Page.GetTowerKillBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillBlue* + name: GetTowerKillBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTowerKillBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillBlue + nameWithType: EndGameView3Page.GetTowerKillBlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillRed + name: GetTowerKillRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTowerKillRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillRed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillRed() + nameWithType: EndGameView3Page.GetTowerKillRed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillRed* + name: GetTowerKillRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetTowerKillRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetTowerKillRed + nameWithType: EndGameView3Page.GetTowerKillRed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossBlue + name: GetWinLossBlue() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetWinLossBlue + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossBlue + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossBlue() + nameWithType: EndGameView3Page.GetWinLossBlue() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossBlue* + name: GetWinLossBlue + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetWinLossBlue_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossBlue + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossBlue + nameWithType: EndGameView3Page.GetWinLossBlue +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossRed + name: GetWinLossRed() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetWinLossRed + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossRed + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossRed() + nameWithType: EndGameView3Page.GetWinLossRed() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossRed* + name: GetWinLossRed + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_GetWinLossRed_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossRed + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.GetWinLossRed + nameWithType: EndGameView3Page.GetWinLossRed +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.goldDiff + name: goldDiff + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_goldDiff + commentId: F:OSL_Server.Pages.EndGame.EndGameView3Page.goldDiff + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.goldDiff + nameWithType: EndGameView3Page.goldDiff +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.MaxGold + name: MaxGold() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_MaxGold + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.MaxGold + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.MaxGold() + nameWithType: EndGameView3Page.MaxGold() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.MaxGold* + name: MaxGold + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_MaxGold_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.MaxGold + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.MaxGold + nameWithType: EndGameView3Page.MaxGold +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ResetColor + commentId: M:OSL_Server.Pages.EndGame.EndGameView3Page.ResetColor + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ResetColor() + nameWithType: EndGameView3Page.ResetColor() +- uid: OSL_Server.Pages.EndGame.EndGameView3Page.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.EndGame.EndGameView3Page.html#OSL_Server_Pages_EndGame_EndGameView3Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.EndGame.EndGameView3Page.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.EndGame.EndGameView3Page.ResetColor + nameWithType: EndGameView3Page.ResetColor +- uid: OSL_Server.Pages.EndGameTestPage + name: EndGameTestPage + href: apiserver/OSL_Server.Pages.EndGameTestPage.html + commentId: T:OSL_Server.Pages.EndGameTestPage + fullName: OSL_Server.Pages.EndGameTestPage + nameWithType: EndGameTestPage +- uid: OSL_Server.Pages.EndGameTestPage.convertToAngle(System.Int32,System.Double,System.Int32,System.Double) + name: convertToAngle(Int32, Double, Int32, Double) + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToAngle_System_Int32_System_Double_System_Int32_System_Double_ + commentId: M:OSL_Server.Pages.EndGameTestPage.convertToAngle(System.Int32,System.Double,System.Int32,System.Double) + fullName: OSL_Server.Pages.EndGameTestPage.convertToAngle(System.Int32, System.Double, System.Int32, System.Double) + nameWithType: EndGameTestPage.convertToAngle(Int32, Double, Int32, Double) +- uid: OSL_Server.Pages.EndGameTestPage.convertToAngle* + name: convertToAngle + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToAngle_ + commentId: Overload:OSL_Server.Pages.EndGameTestPage.convertToAngle + isSpec: "True" + fullName: OSL_Server.Pages.EndGameTestPage.convertToAngle + nameWithType: EndGameTestPage.convertToAngle +- uid: OSL_Server.Pages.EndGameTestPage.convertToHyp(System.Int32,System.Double,System.Int32,System.Double) + name: convertToHyp(Int32, Double, Int32, Double) + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToHyp_System_Int32_System_Double_System_Int32_System_Double_ + commentId: M:OSL_Server.Pages.EndGameTestPage.convertToHyp(System.Int32,System.Double,System.Int32,System.Double) + fullName: OSL_Server.Pages.EndGameTestPage.convertToHyp(System.Int32, System.Double, System.Int32, System.Double) + nameWithType: EndGameTestPage.convertToHyp(Int32, Double, Int32, Double) +- uid: OSL_Server.Pages.EndGameTestPage.convertToHyp* + name: convertToHyp + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToHyp_ + commentId: Overload:OSL_Server.Pages.EndGameTestPage.convertToHyp + isSpec: "True" + fullName: OSL_Server.Pages.EndGameTestPage.convertToHyp + nameWithType: EndGameTestPage.convertToHyp +- uid: OSL_Server.Pages.EndGameTestPage.convertToString(System.Double) + name: convertToString(Double) + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToString_System_Double_ + commentId: M:OSL_Server.Pages.EndGameTestPage.convertToString(System.Double) + fullName: OSL_Server.Pages.EndGameTestPage.convertToString(System.Double) + nameWithType: EndGameTestPage.convertToString(Double) +- uid: OSL_Server.Pages.EndGameTestPage.convertToString(System.Int32) + name: convertToString(Int32) + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToString_System_Int32_ + commentId: M:OSL_Server.Pages.EndGameTestPage.convertToString(System.Int32) + fullName: OSL_Server.Pages.EndGameTestPage.convertToString(System.Int32) + nameWithType: EndGameTestPage.convertToString(Int32) +- uid: OSL_Server.Pages.EndGameTestPage.convertToString* + name: convertToString + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_convertToString_ + commentId: Overload:OSL_Server.Pages.EndGameTestPage.convertToString + isSpec: "True" + fullName: OSL_Server.Pages.EndGameTestPage.convertToString + nameWithType: EndGameTestPage.convertToString +- uid: OSL_Server.Pages.EndGameTestPage.yolo + name: yolo() + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_yolo + commentId: M:OSL_Server.Pages.EndGameTestPage.yolo + fullName: OSL_Server.Pages.EndGameTestPage.yolo() + nameWithType: EndGameTestPage.yolo() +- uid: OSL_Server.Pages.EndGameTestPage.yolo* + name: yolo + href: apiserver/OSL_Server.Pages.EndGameTestPage.html#OSL_Server_Pages_EndGameTestPage_yolo_ + commentId: Overload:OSL_Server.Pages.EndGameTestPage.yolo + isSpec: "True" + fullName: OSL_Server.Pages.EndGameTestPage.yolo + nameWithType: EndGameTestPage.yolo - uid: OSL_Server.Pages.ErrorModel name: ErrorModel href: apiserver/OSL_Server.Pages.ErrorModel.html @@ -8220,1472 +18399,1478 @@ references: commentId: T:OSL_Server.Pages.Index fullName: OSL_Server.Pages.Index nameWithType: Index -- uid: OSL_Server.Pages.InGamePage +- uid: OSL_Server.Pages.InGame + name: OSL_Server.Pages.InGame + href: apiserver/OSL_Server.Pages.InGame.html + commentId: N:OSL_Server.Pages.InGame + fullName: OSL_Server.Pages.InGame + nameWithType: OSL_Server.Pages.InGame +- uid: OSL_Server.Pages.InGame.InGamePage name: InGamePage - href: apiserver/OSL_Server.Pages.InGamePage.html - commentId: T:OSL_Server.Pages.InGamePage - fullName: OSL_Server.Pages.InGamePage + href: apiserver/OSL_Server.Pages.InGame.InGamePage.html + commentId: T:OSL_Server.Pages.InGame.InGamePage + fullName: OSL_Server.Pages.InGame.InGamePage nameWithType: InGamePage -- uid: OSL_Server.Pages.InGamePage.colorPickerOverlay1 +- uid: OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay1 name: colorPickerOverlay1 - href: apiserver/OSL_Server.Pages.InGamePage.html#OSL_Server_Pages_InGamePage_colorPickerOverlay1 - commentId: F:OSL_Server.Pages.InGamePage.colorPickerOverlay1 - fullName: OSL_Server.Pages.InGamePage.colorPickerOverlay1 + href: apiserver/OSL_Server.Pages.InGame.InGamePage.html#OSL_Server_Pages_InGame_InGamePage_colorPickerOverlay1 + commentId: F:OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay1 + fullName: OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay1 nameWithType: InGamePage.colorPickerOverlay1 -- uid: OSL_Server.Pages.InGamePage.colorPickerOverlay2 +- uid: OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay2 name: colorPickerOverlay2 - href: apiserver/OSL_Server.Pages.InGamePage.html#OSL_Server_Pages_InGamePage_colorPickerOverlay2 - commentId: F:OSL_Server.Pages.InGamePage.colorPickerOverlay2 - fullName: OSL_Server.Pages.InGamePage.colorPickerOverlay2 + href: apiserver/OSL_Server.Pages.InGame.InGamePage.html#OSL_Server_Pages_InGame_InGamePage_colorPickerOverlay2 + commentId: F:OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay2 + fullName: OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay2 nameWithType: InGamePage.colorPickerOverlay2 -- uid: OSL_Server.Pages.InGamePage.colorPickerOverlay3 +- uid: OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay3 name: colorPickerOverlay3 - href: apiserver/OSL_Server.Pages.InGamePage.html#OSL_Server_Pages_InGamePage_colorPickerOverlay3 - commentId: F:OSL_Server.Pages.InGamePage.colorPickerOverlay3 - fullName: OSL_Server.Pages.InGamePage.colorPickerOverlay3 + href: apiserver/OSL_Server.Pages.InGame.InGamePage.html#OSL_Server_Pages_InGame_InGamePage_colorPickerOverlay3 + commentId: F:OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay3 + fullName: OSL_Server.Pages.InGame.InGamePage.colorPickerOverlay3 nameWithType: InGamePage.colorPickerOverlay3 -- uid: OSL_Server.Pages.InGamePage.colorValue +- uid: OSL_Server.Pages.InGame.InGamePage.colorValue name: colorValue - href: apiserver/OSL_Server.Pages.InGamePage.html#OSL_Server_Pages_InGamePage_colorValue - commentId: F:OSL_Server.Pages.InGamePage.colorValue - fullName: OSL_Server.Pages.InGamePage.colorValue + href: apiserver/OSL_Server.Pages.InGame.InGamePage.html#OSL_Server_Pages_InGame_InGamePage_colorValue + commentId: F:OSL_Server.Pages.InGame.InGamePage.colorValue + fullName: OSL_Server.Pages.InGame.InGamePage.colorValue nameWithType: InGamePage.colorValue -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1 +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1 name: InGamePage.TextValueOverlayView1 - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html - commentId: T:OSL_Server.Pages.InGamePage.TextValueOverlayView1 - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1 + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html + commentId: T:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1 + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1 nameWithType: InGamePage.TextValueOverlayView1 -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreText name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamScoreText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreText nameWithType: InGamePage.TextValueOverlayView1.BlueTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreText* name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreText nameWithType: InGamePage.TextValueOverlayView1.BlueTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit name: BlueTeamScoreTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamScoreTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamScoreTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit() nameWithType: InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit* name: BlueTeamScoreTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamScoreTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamScoreTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit nameWithType: InGamePage.TextValueOverlayView1.BlueTeamScoreTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamText name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamText nameWithType: InGamePage.TextValueOverlayView1.BlueTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamText* name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamText nameWithType: InGamePage.TextValueOverlayView1.BlueTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit name: BlueTeamTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit() nameWithType: InGamePage.TextValueOverlayView1.BlueTeamTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit* name: BlueTeamTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_BlueTeamTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_BlueTeamTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.BlueTeamTextSubmit nameWithType: InGamePage.TextValueOverlayView1.BlueTeamTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.DisplayDragonTimer +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.DisplayDragonTimer name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_DisplayDragonTimer - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView1.DisplayDragonTimer - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_DisplayDragonTimer + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.DisplayDragonTimer nameWithType: InGamePage.TextValueOverlayView1.DisplayDragonTimer -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.DisplayDragonTimer* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.DisplayDragonTimer* name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_DisplayDragonTimer_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_DisplayDragonTimer_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.DisplayDragonTimer isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.DisplayDragonTimer nameWithType: InGamePage.TextValueOverlayView1.DisplayDragonTimer -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.InputCheckboxSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.InputCheckboxSubmit name: InputCheckboxSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_InputCheckboxSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.InputCheckboxSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.InputCheckboxSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_InputCheckboxSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.InputCheckboxSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.InputCheckboxSubmit() nameWithType: InGamePage.TextValueOverlayView1.InputCheckboxSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.InputCheckboxSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.InputCheckboxSubmit* name: InputCheckboxSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_InputCheckboxSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.InputCheckboxSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_InputCheckboxSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.InputCheckboxSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.InputCheckboxSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.InputCheckboxSubmit nameWithType: InGamePage.TextValueOverlayView1.InputCheckboxSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreText name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamScoreText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreText nameWithType: InGamePage.TextValueOverlayView1.RedTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreText* name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreText nameWithType: InGamePage.TextValueOverlayView1.RedTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit name: RedTeamScoreTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamScoreTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamScoreTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit() nameWithType: InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit* name: RedTeamScoreTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamScoreTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamScoreTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit nameWithType: InGamePage.TextValueOverlayView1.RedTeamScoreTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamText name: RedTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamText nameWithType: InGamePage.TextValueOverlayView1.RedTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamText* name: RedTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamText nameWithType: InGamePage.TextValueOverlayView1.RedTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamTextSubmit name: RedTeamTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamTextSubmit() nameWithType: InGamePage.TextValueOverlayView1.RedTeamTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamTextSubmit* name: RedTeamTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_RedTeamTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_RedTeamTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.RedTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.RedTeamTextSubmit nameWithType: InGamePage.TextValueOverlayView1.RedTeamTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText name: SetColorBlueTeamScoreText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorBlueTeamScoreText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorBlueTeamScoreText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText() nameWithType: InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText* name: SetColorBlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorBlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorBlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText nameWithType: InGamePage.TextValueOverlayView1.SetColorBlueTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamText name: SetColorBlueTeamText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorBlueTeamText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorBlueTeamText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamText() nameWithType: InGamePage.TextValueOverlayView1.SetColorBlueTeamText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamText* name: SetColorBlueTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorBlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorBlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorBlueTeamText nameWithType: InGamePage.TextValueOverlayView1.SetColorBlueTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText name: SetColorRedTeamScoreText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorRedTeamScoreText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorRedTeamScoreText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText() nameWithType: InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText* name: SetColorRedTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorRedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorRedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText nameWithType: InGamePage.TextValueOverlayView1.SetColorRedTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamText name: SetColorRedTeamText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorRedTeamText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorRedTeamText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamText() nameWithType: InGamePage.TextValueOverlayView1.SetColorRedTeamText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamText* name: SetColorRedTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SetColorRedTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SetColorRedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SetColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SetColorRedTeamText nameWithType: InGamePage.TextValueOverlayView1.SetColorRedTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SwitchSideRedBlue +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SwitchSideRedBlue name: SwitchSideRedBlue() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SwitchSideRedBlue - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SwitchSideRedBlue - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SwitchSideRedBlue + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SwitchSideRedBlue() nameWithType: InGamePage.TextValueOverlayView1.SwitchSideRedBlue() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SwitchSideRedBlue* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SwitchSideRedBlue* name: SwitchSideRedBlue - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGamePage_TextValueOverlayView1_SwitchSideRedBlue_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView1.SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView1_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SwitchSideRedBlue isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView1.SwitchSideRedBlue + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView1.SwitchSideRedBlue nameWithType: InGamePage.TextValueOverlayView1.SwitchSideRedBlue -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2 +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2 name: InGamePage.TextValueOverlayView2 - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html - commentId: T:OSL_Server.Pages.InGamePage.TextValueOverlayView2 - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2 + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html + commentId: T:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2 + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2 nameWithType: InGamePage.TextValueOverlayView2 -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreText name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamScoreText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreText nameWithType: InGamePage.TextValueOverlayView2.BlueTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreText* name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreText nameWithType: InGamePage.TextValueOverlayView2.BlueTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit name: BlueTeamScoreTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamScoreTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamScoreTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit() nameWithType: InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit* name: BlueTeamScoreTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamScoreTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamScoreTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit nameWithType: InGamePage.TextValueOverlayView2.BlueTeamScoreTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamText name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamText nameWithType: InGamePage.TextValueOverlayView2.BlueTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamText* name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamText nameWithType: InGamePage.TextValueOverlayView2.BlueTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit name: BlueTeamTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit() nameWithType: InGamePage.TextValueOverlayView2.BlueTeamTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit* name: BlueTeamTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_BlueTeamTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_BlueTeamTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.BlueTeamTextSubmit nameWithType: InGamePage.TextValueOverlayView2.BlueTeamTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.DisplayDragonTimer +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.DisplayDragonTimer name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_DisplayDragonTimer - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView2.DisplayDragonTimer - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_DisplayDragonTimer + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.DisplayDragonTimer nameWithType: InGamePage.TextValueOverlayView2.DisplayDragonTimer -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.DisplayDragonTimer* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.DisplayDragonTimer* name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_DisplayDragonTimer_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_DisplayDragonTimer_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.DisplayDragonTimer isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.DisplayDragonTimer nameWithType: InGamePage.TextValueOverlayView2.DisplayDragonTimer -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.InputCheckboxSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.InputCheckboxSubmit name: InputCheckboxSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_InputCheckboxSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.InputCheckboxSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.InputCheckboxSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_InputCheckboxSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.InputCheckboxSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.InputCheckboxSubmit() nameWithType: InGamePage.TextValueOverlayView2.InputCheckboxSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.InputCheckboxSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.InputCheckboxSubmit* name: InputCheckboxSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_InputCheckboxSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.InputCheckboxSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_InputCheckboxSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.InputCheckboxSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.InputCheckboxSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.InputCheckboxSubmit nameWithType: InGamePage.TextValueOverlayView2.InputCheckboxSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreText name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamScoreText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreText nameWithType: InGamePage.TextValueOverlayView2.RedTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreText* name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreText nameWithType: InGamePage.TextValueOverlayView2.RedTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit name: RedTeamScoreTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamScoreTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamScoreTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit() nameWithType: InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit* name: RedTeamScoreTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamScoreTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamScoreTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit nameWithType: InGamePage.TextValueOverlayView2.RedTeamScoreTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamText name: RedTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamText nameWithType: InGamePage.TextValueOverlayView2.RedTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamText* name: RedTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamText nameWithType: InGamePage.TextValueOverlayView2.RedTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamTextSubmit name: RedTeamTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamTextSubmit() nameWithType: InGamePage.TextValueOverlayView2.RedTeamTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamTextSubmit* name: RedTeamTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_RedTeamTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_RedTeamTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.RedTeamTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.RedTeamTextSubmit nameWithType: InGamePage.TextValueOverlayView2.RedTeamTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText name: SetColorBlueTeamScoreText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorBlueTeamScoreText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorBlueTeamScoreText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText() nameWithType: InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText* name: SetColorBlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorBlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorBlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText nameWithType: InGamePage.TextValueOverlayView2.SetColorBlueTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamText name: SetColorBlueTeamText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorBlueTeamText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorBlueTeamText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamText() nameWithType: InGamePage.TextValueOverlayView2.SetColorBlueTeamText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamText* name: SetColorBlueTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorBlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorBlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorBlueTeamText nameWithType: InGamePage.TextValueOverlayView2.SetColorBlueTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText name: SetColorRedTeamScoreText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorRedTeamScoreText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorRedTeamScoreText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText() nameWithType: InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText* name: SetColorRedTeamScoreText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorRedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorRedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText nameWithType: InGamePage.TextValueOverlayView2.SetColorRedTeamScoreText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamText name: SetColorRedTeamText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorRedTeamText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorRedTeamText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamText() nameWithType: InGamePage.TextValueOverlayView2.SetColorRedTeamText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamText* name: SetColorRedTeamText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SetColorRedTeamText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SetColorRedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SetColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SetColorRedTeamText nameWithType: InGamePage.TextValueOverlayView2.SetColorRedTeamText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SwitchSideRedBlue +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SwitchSideRedBlue name: SwitchSideRedBlue() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SwitchSideRedBlue - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SwitchSideRedBlue - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SwitchSideRedBlue() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SwitchSideRedBlue + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SwitchSideRedBlue + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SwitchSideRedBlue() nameWithType: InGamePage.TextValueOverlayView2.SwitchSideRedBlue() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SwitchSideRedBlue* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SwitchSideRedBlue* name: SwitchSideRedBlue - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGamePage_TextValueOverlayView2_SwitchSideRedBlue_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView2.SwitchSideRedBlue + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView2_SwitchSideRedBlue_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SwitchSideRedBlue isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView2.SwitchSideRedBlue + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView2.SwitchSideRedBlue nameWithType: InGamePage.TextValueOverlayView2.SwitchSideRedBlue -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3 +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3 name: InGamePage.TextValueOverlayView3 - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html - commentId: T:OSL_Server.Pages.InGamePage.TextValueOverlayView3 - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3 + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html + commentId: T:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3 + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3 nameWithType: InGamePage.TextValueOverlayView3 -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.InputCheckboxSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.InputCheckboxSubmit name: InputCheckboxSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_InputCheckboxSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView3.InputCheckboxSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.InputCheckboxSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_InputCheckboxSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.InputCheckboxSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.InputCheckboxSubmit() nameWithType: InGamePage.TextValueOverlayView3.InputCheckboxSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.InputCheckboxSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.InputCheckboxSubmit* name: InputCheckboxSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_InputCheckboxSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView3.InputCheckboxSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_InputCheckboxSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.InputCheckboxSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.InputCheckboxSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.InputCheckboxSubmit nameWithType: InGamePage.TextValueOverlayView3.InputCheckboxSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoText name: ReplayInfoText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_ReplayInfoText - commentId: P:OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_ReplayInfoText + commentId: P:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoText nameWithType: InGamePage.TextValueOverlayView3.ReplayInfoText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoText* name: ReplayInfoText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_ReplayInfoText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_ReplayInfoText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoText nameWithType: InGamePage.TextValueOverlayView3.ReplayInfoText -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit name: ReplayInfoTextSubmit() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_ReplayInfoTextSubmit - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_ReplayInfoTextSubmit + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit() nameWithType: InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit* name: ReplayInfoTextSubmit - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_ReplayInfoTextSubmit_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_ReplayInfoTextSubmit_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit nameWithType: InGamePage.TextValueOverlayView3.ReplayInfoTextSubmit -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.SetColorReplayInfoText +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.SetColorReplayInfoText name: SetColorReplayInfoText() - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_SetColorReplayInfoText - commentId: M:OSL_Server.Pages.InGamePage.TextValueOverlayView3.SetColorReplayInfoText - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.SetColorReplayInfoText() + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_SetColorReplayInfoText + commentId: M:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.SetColorReplayInfoText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.SetColorReplayInfoText() nameWithType: InGamePage.TextValueOverlayView3.SetColorReplayInfoText() -- uid: OSL_Server.Pages.InGamePage.TextValueOverlayView3.SetColorReplayInfoText* +- uid: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.SetColorReplayInfoText* name: SetColorReplayInfoText - href: apiserver/OSL_Server.Pages.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGamePage_TextValueOverlayView3_SetColorReplayInfoText_ - commentId: Overload:OSL_Server.Pages.InGamePage.TextValueOverlayView3.SetColorReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.html#OSL_Server_Pages_InGame_InGamePage_TextValueOverlayView3_SetColorReplayInfoText_ + commentId: Overload:OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.SetColorReplayInfoText isSpec: "True" - fullName: OSL_Server.Pages.InGamePage.TextValueOverlayView3.SetColorReplayInfoText + fullName: OSL_Server.Pages.InGame.InGamePage.TextValueOverlayView3.SetColorReplayInfoText nameWithType: InGamePage.TextValueOverlayView3.SetColorReplayInfoText -- uid: OSL_Server.Pages.InGameView1Page +- uid: OSL_Server.Pages.InGame.InGameView1Page name: InGameView1Page - href: apiserver/OSL_Server.Pages.InGameView1Page.html - commentId: T:OSL_Server.Pages.InGameView1Page - fullName: OSL_Server.Pages.InGameView1Page + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.html + commentId: T:OSL_Server.Pages.InGame.InGameView1Page + fullName: OSL_Server.Pages.InGame.InGameView1Page nameWithType: InGameView1Page -- uid: OSL_Server.Pages.InGameView1Page.formatingData +- uid: OSL_Server.Pages.InGame.InGameView1Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.InGameView1Page.html#OSL_Server_Pages_InGameView1Page_formatingData - commentId: F:OSL_Server.Pages.InGameView1Page.formatingData - fullName: OSL_Server.Pages.InGameView1Page.formatingData + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.html#OSL_Server_Pages_InGame_InGameView1Page_formatingData + commentId: F:OSL_Server.Pages.InGame.InGameView1Page.formatingData + fullName: OSL_Server.Pages.InGame.InGameView1Page.formatingData nameWithType: InGameView1Page.formatingData -- uid: OSL_Server.Pages.InGameView1Page.FormatingData +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData name: InGameView1Page.FormatingData - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html - commentId: T:OSL_Server.Pages.InGameView1Page.FormatingData - fullName: OSL_Server.Pages.InGameView1Page.FormatingData + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html + commentId: T:OSL_Server.Pages.InGame.InGameView1Page.FormatingData + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData nameWithType: InGameView1Page.FormatingData -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.BluePlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BluePlayerFrame name: BluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_BluePlayerFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.BluePlayerFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.BluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_BluePlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BluePlayerFrame nameWithType: InGameView1Page.FormatingData.BluePlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.BluePlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BluePlayerFrame* name: BluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_BluePlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.BluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_BluePlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BluePlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.BluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BluePlayerFrame nameWithType: InGameView1Page.FormatingData.BluePlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamScoreText name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_BlueTeamScoreText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamScoreText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_BlueTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamScoreText nameWithType: InGameView1Page.FormatingData.BlueTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamScoreText* name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_BlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_BlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamScoreText nameWithType: InGameView1Page.FormatingData.BlueTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamText name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_BlueTeamText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_BlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamText nameWithType: InGameView1Page.FormatingData.BlueTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamText* name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_BlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_BlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.BlueTeamText nameWithType: InGameView1Page.FormatingData.BlueTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamScoreText name: ColorBlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorBlueTeamScoreText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamScoreText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorBlueTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamScoreText nameWithType: InGameView1Page.FormatingData.ColorBlueTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamScoreText* name: ColorBlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorBlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorBlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamScoreText nameWithType: InGameView1Page.FormatingData.ColorBlueTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamText name: ColorBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorBlueTeamText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorBlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamText nameWithType: InGameView1Page.FormatingData.ColorBlueTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamText* name: ColorBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorBlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorBlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorBlueTeamText nameWithType: InGameView1Page.FormatingData.ColorBlueTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamScoreText name: ColorRedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorRedTeamScoreText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamScoreText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorRedTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamScoreText nameWithType: InGameView1Page.FormatingData.ColorRedTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamScoreText* name: ColorRedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorRedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorRedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamScoreText nameWithType: InGameView1Page.FormatingData.ColorRedTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamText name: ColorRedTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorRedTeamText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorRedTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamText nameWithType: InGameView1Page.FormatingData.ColorRedTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamText* name: ColorRedTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_ColorRedTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_ColorRedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.ColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.ColorRedTeamText nameWithType: InGameView1Page.FormatingData.ColorRedTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultPatch nameWithType: InGameView1Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultPatch nameWithType: InGameView1Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultRegion nameWithType: InGameView1Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DefaultRegion nameWithType: InGameView1Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBluePlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBluePlayerFrame name: DisplayBluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBluePlayerFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBluePlayerFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBluePlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBluePlayerFrame nameWithType: InGameView1Page.FormatingData.DisplayBluePlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBluePlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBluePlayerFrame* name: DisplayBluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBluePlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBluePlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBluePlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBluePlayerFrame nameWithType: InGameView1Page.FormatingData.DisplayBluePlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeam +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeam name: DisplayBlueTeam - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBlueTeam - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeam - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBlueTeam + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeam + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeam nameWithType: InGameView1Page.FormatingData.DisplayBlueTeam -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeam* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeam* name: DisplayBlueTeam - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBlueTeam_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBlueTeam_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeam isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeam + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeam nameWithType: InGameView1Page.FormatingData.DisplayBlueTeam -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamScore +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamScore name: DisplayBlueTeamScore - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBlueTeamScore - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamScore - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBlueTeamScore + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamScore + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamScore nameWithType: InGameView1Page.FormatingData.DisplayBlueTeamScore -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamScore* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamScore* name: DisplayBlueTeamScore - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBlueTeamScore_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamScore isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamScore + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamScore nameWithType: InGameView1Page.FormatingData.DisplayBlueTeamScore -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamText name: DisplayBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBlueTeamText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamText nameWithType: InGameView1Page.FormatingData.DisplayBlueTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamText* name: DisplayBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayBlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayBlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayBlueTeamText nameWithType: InGameView1Page.FormatingData.DisplayBlueTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayDragonTimer +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayDragonTimer name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayDragonTimer - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayDragonTimer - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayDragonTimer + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayDragonTimer nameWithType: InGameView1Page.FormatingData.DisplayDragonTimer -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayDragonTimer* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayDragonTimer* name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayDragonTimer_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayDragonTimer_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayDragonTimer isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayDragonTimer nameWithType: InGameView1Page.FormatingData.DisplayDragonTimer -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayHeraldBaronTimer +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayHeraldBaronTimer name: DisplayHeraldBaronTimer - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayHeraldBaronTimer - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayHeraldBaronTimer - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayHeraldBaronTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayHeraldBaronTimer + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayHeraldBaronTimer + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayHeraldBaronTimer nameWithType: InGameView1Page.FormatingData.DisplayHeraldBaronTimer -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayHeraldBaronTimer* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayHeraldBaronTimer* name: DisplayHeraldBaronTimer - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayHeraldBaronTimer_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayHeraldBaronTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayHeraldBaronTimer_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayHeraldBaronTimer isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayHeraldBaronTimer + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayHeraldBaronTimer nameWithType: InGameView1Page.FormatingData.DisplayHeraldBaronTimer -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayLeftInfo +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayLeftInfo name: DisplayLeftInfo - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayLeftInfo - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayLeftInfo - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayLeftInfo + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayLeftInfo + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayLeftInfo + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayLeftInfo nameWithType: InGameView1Page.FormatingData.DisplayLeftInfo -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayLeftInfo* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayLeftInfo* name: DisplayLeftInfo - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayLeftInfo_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayLeftInfo + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayLeftInfo_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayLeftInfo isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayLeftInfo + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayLeftInfo nameWithType: InGameView1Page.FormatingData.DisplayLeftInfo -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedPlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedPlayerFrame name: DisplayRedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedPlayerFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedPlayerFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedPlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedPlayerFrame nameWithType: InGameView1Page.FormatingData.DisplayRedPlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedPlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedPlayerFrame* name: DisplayRedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedPlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedPlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedPlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedPlayerFrame nameWithType: InGameView1Page.FormatingData.DisplayRedPlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeam +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeam name: DisplayRedTeam - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedTeam - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeam - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedTeam + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeam + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeam nameWithType: InGameView1Page.FormatingData.DisplayRedTeam -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeam* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeam* name: DisplayRedTeam - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedTeam_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedTeam_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeam isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeam + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeam nameWithType: InGameView1Page.FormatingData.DisplayRedTeam -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamScore +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamScore name: DisplayRedTeamScore - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedTeamScore - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamScore - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedTeamScore + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamScore + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamScore nameWithType: InGameView1Page.FormatingData.DisplayRedTeamScore -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamScore* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamScore* name: DisplayRedTeamScore - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedTeamScore_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedTeamScore_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamScore isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamScore + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamScore nameWithType: InGameView1Page.FormatingData.DisplayRedTeamScore -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamText name: DisplayRedTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedTeamText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamText nameWithType: InGameView1Page.FormatingData.DisplayRedTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamText* name: DisplayRedTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRedTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRedTeamText nameWithType: InGameView1Page.FormatingData.DisplayRedTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRightInfo +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRightInfo name: DisplayRightInfo - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRightInfo - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRightInfo - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRightInfo + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRightInfo + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRightInfo + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRightInfo nameWithType: InGameView1Page.FormatingData.DisplayRightInfo -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRightInfo* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRightInfo* name: DisplayRightInfo - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DisplayRightInfo_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRightInfo + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DisplayRightInfo_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRightInfo isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DisplayRightInfo + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DisplayRightInfo nameWithType: InGameView1Page.FormatingData.DisplayRightInfo -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DragonTimerFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DragonTimerFrame name: DragonTimerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DragonTimerFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.DragonTimerFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DragonTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DragonTimerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DragonTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DragonTimerFrame nameWithType: InGameView1Page.FormatingData.DragonTimerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.DragonTimerFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DragonTimerFrame* name: DragonTimerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_DragonTimerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.DragonTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_DragonTimerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DragonTimerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.DragonTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.DragonTimerFrame nameWithType: InGameView1Page.FormatingData.DragonTimerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.HeraldBaronTimerFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.HeraldBaronTimerFrame name: HeraldBaronTimerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_HeraldBaronTimerFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.HeraldBaronTimerFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.HeraldBaronTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_HeraldBaronTimerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.HeraldBaronTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.HeraldBaronTimerFrame nameWithType: InGameView1Page.FormatingData.HeraldBaronTimerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.HeraldBaronTimerFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.HeraldBaronTimerFrame* name: HeraldBaronTimerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_HeraldBaronTimerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.HeraldBaronTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_HeraldBaronTimerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.HeraldBaronTimerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.HeraldBaronTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.HeraldBaronTimerFrame nameWithType: InGameView1Page.FormatingData.HeraldBaronTimerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.LeftInfoFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.LeftInfoFrame name: LeftInfoFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_LeftInfoFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.LeftInfoFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.LeftInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_LeftInfoFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.LeftInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.LeftInfoFrame nameWithType: InGameView1Page.FormatingData.LeftInfoFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.LeftInfoFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.LeftInfoFrame* name: LeftInfoFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_LeftInfoFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.LeftInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_LeftInfoFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.LeftInfoFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.LeftInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.LeftInfoFrame nameWithType: InGameView1Page.FormatingData.LeftInfoFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RedPlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedPlayerFrame name: RedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RedPlayerFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.RedPlayerFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RedPlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedPlayerFrame nameWithType: InGameView1Page.FormatingData.RedPlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RedPlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedPlayerFrame* name: RedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RedPlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.RedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RedPlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedPlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedPlayerFrame nameWithType: InGameView1Page.FormatingData.RedPlayerFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamScoreText name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RedTeamScoreText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamScoreText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RedTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamScoreText nameWithType: InGameView1Page.FormatingData.RedTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamScoreText* name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamScoreText nameWithType: InGameView1Page.FormatingData.RedTeamScoreText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamText +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamText name: RedTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RedTeamText - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamText - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RedTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamText nameWithType: InGameView1Page.FormatingData.RedTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamText* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamText* name: RedTeamText - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RedTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RedTeamText + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RedTeamText nameWithType: InGameView1Page.FormatingData.RedTeamText -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RightInfoFrame +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RightInfoFrame name: RightInfoFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RightInfoFrame - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.RightInfoFrame - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RightInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RightInfoFrame + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RightInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RightInfoFrame nameWithType: InGameView1Page.FormatingData.RightInfoFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.RightInfoFrame* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RightInfoFrame* name: RightInfoFrame - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_RightInfoFrame_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.RightInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_RightInfoFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RightInfoFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.RightInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.RightInfoFrame nameWithType: InGameView1Page.FormatingData.RightInfoFrame -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.TeamBanner +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamBanner name: TeamBanner - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_TeamBanner - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.TeamBanner - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.TeamBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_TeamBanner + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamBanner + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamBanner nameWithType: InGameView1Page.FormatingData.TeamBanner -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.TeamBanner* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamBanner* name: TeamBanner - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_TeamBanner_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.TeamBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_TeamBanner_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamBanner isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.TeamBanner + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamBanner nameWithType: InGameView1Page.FormatingData.TeamBanner -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.TeamScoreBanner +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamScoreBanner name: TeamScoreBanner - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_TeamScoreBanner - commentId: P:OSL_Server.Pages.InGameView1Page.FormatingData.TeamScoreBanner - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.TeamScoreBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_TeamScoreBanner + commentId: P:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamScoreBanner + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamScoreBanner nameWithType: InGameView1Page.FormatingData.TeamScoreBanner -- uid: OSL_Server.Pages.InGameView1Page.FormatingData.TeamScoreBanner* +- uid: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamScoreBanner* name: TeamScoreBanner - href: apiserver/OSL_Server.Pages.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGameView1Page_FormatingData_TeamScoreBanner_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.FormatingData.TeamScoreBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView1Page_FormatingData_TeamScoreBanner_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamScoreBanner isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.FormatingData.TeamScoreBanner + fullName: OSL_Server.Pages.InGame.InGameView1Page.FormatingData.TeamScoreBanner nameWithType: InGameView1Page.FormatingData.TeamScoreBanner -- uid: OSL_Server.Pages.InGameView1Page.ResetColor +- uid: OSL_Server.Pages.InGame.InGameView1Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.InGameView1Page.html#OSL_Server_Pages_InGameView1Page_ResetColor - commentId: M:OSL_Server.Pages.InGameView1Page.ResetColor - fullName: OSL_Server.Pages.InGameView1Page.ResetColor() + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.html#OSL_Server_Pages_InGame_InGameView1Page_ResetColor + commentId: M:OSL_Server.Pages.InGame.InGameView1Page.ResetColor + fullName: OSL_Server.Pages.InGame.InGameView1Page.ResetColor() nameWithType: InGameView1Page.ResetColor() -- uid: OSL_Server.Pages.InGameView1Page.ResetColor* +- uid: OSL_Server.Pages.InGame.InGameView1Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.InGameView1Page.html#OSL_Server_Pages_InGameView1Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.InGameView1Page.ResetColor + href: apiserver/OSL_Server.Pages.InGame.InGameView1Page.html#OSL_Server_Pages_InGame_InGameView1Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView1Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.InGameView1Page.ResetColor + fullName: OSL_Server.Pages.InGame.InGameView1Page.ResetColor nameWithType: InGameView1Page.ResetColor -- uid: OSL_Server.Pages.InGameView2Page +- uid: OSL_Server.Pages.InGame.InGameView2Page name: InGameView2Page - href: apiserver/OSL_Server.Pages.InGameView2Page.html - commentId: T:OSL_Server.Pages.InGameView2Page - fullName: OSL_Server.Pages.InGameView2Page + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.html + commentId: T:OSL_Server.Pages.InGame.InGameView2Page + fullName: OSL_Server.Pages.InGame.InGameView2Page nameWithType: InGameView2Page -- uid: OSL_Server.Pages.InGameView2Page.formatingData +- uid: OSL_Server.Pages.InGame.InGameView2Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.InGameView2Page.html#OSL_Server_Pages_InGameView2Page_formatingData - commentId: F:OSL_Server.Pages.InGameView2Page.formatingData - fullName: OSL_Server.Pages.InGameView2Page.formatingData + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.html#OSL_Server_Pages_InGame_InGameView2Page_formatingData + commentId: F:OSL_Server.Pages.InGame.InGameView2Page.formatingData + fullName: OSL_Server.Pages.InGame.InGameView2Page.formatingData nameWithType: InGameView2Page.formatingData -- uid: OSL_Server.Pages.InGameView2Page.FormatingData +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData name: InGameView2Page.FormatingData - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html - commentId: T:OSL_Server.Pages.InGameView2Page.FormatingData - fullName: OSL_Server.Pages.InGameView2Page.FormatingData + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html + commentId: T:OSL_Server.Pages.InGame.InGameView2Page.FormatingData + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData nameWithType: InGameView2Page.FormatingData -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.BluePlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BluePlayerFrame name: BluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_BluePlayerFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.BluePlayerFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.BluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_BluePlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BluePlayerFrame nameWithType: InGameView2Page.FormatingData.BluePlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.BluePlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BluePlayerFrame* name: BluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_BluePlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.BluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_BluePlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BluePlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.BluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BluePlayerFrame nameWithType: InGameView2Page.FormatingData.BluePlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamScoreText name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_BlueTeamScoreText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamScoreText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_BlueTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamScoreText nameWithType: InGameView2Page.FormatingData.BlueTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamScoreText* name: BlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_BlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_BlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamScoreText nameWithType: InGameView2Page.FormatingData.BlueTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamText name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_BlueTeamText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_BlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamText nameWithType: InGameView2Page.FormatingData.BlueTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamText* name: BlueTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_BlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_BlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.BlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.BlueTeamText nameWithType: InGameView2Page.FormatingData.BlueTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamScoreText name: ColorBlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorBlueTeamScoreText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamScoreText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorBlueTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamScoreText nameWithType: InGameView2Page.FormatingData.ColorBlueTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamScoreText* name: ColorBlueTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorBlueTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorBlueTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamScoreText nameWithType: InGameView2Page.FormatingData.ColorBlueTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamText name: ColorBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorBlueTeamText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorBlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamText nameWithType: InGameView2Page.FormatingData.ColorBlueTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamText* name: ColorBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorBlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorBlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorBlueTeamText nameWithType: InGameView2Page.FormatingData.ColorBlueTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamScoreText name: ColorRedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorRedTeamScoreText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamScoreText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorRedTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamScoreText nameWithType: InGameView2Page.FormatingData.ColorRedTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamScoreText* name: ColorRedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorRedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorRedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamScoreText nameWithType: InGameView2Page.FormatingData.ColorRedTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamText name: ColorRedTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorRedTeamText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorRedTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamText nameWithType: InGameView2Page.FormatingData.ColorRedTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamText* name: ColorRedTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_ColorRedTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_ColorRedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.ColorRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.ColorRedTeamText nameWithType: InGameView2Page.FormatingData.ColorRedTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultPatch nameWithType: InGameView2Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultPatch nameWithType: InGameView2Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultRegion nameWithType: InGameView2Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DefaultRegion nameWithType: InGameView2Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBluePlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBluePlayerFrame name: DisplayBluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBluePlayerFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBluePlayerFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBluePlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBluePlayerFrame nameWithType: InGameView2Page.FormatingData.DisplayBluePlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBluePlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBluePlayerFrame* name: DisplayBluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBluePlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBluePlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBluePlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBluePlayerFrame nameWithType: InGameView2Page.FormatingData.DisplayBluePlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeam +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeam name: DisplayBlueTeam - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBlueTeam - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeam - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBlueTeam + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeam + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeam nameWithType: InGameView2Page.FormatingData.DisplayBlueTeam -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeam* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeam* name: DisplayBlueTeam - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBlueTeam_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBlueTeam_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeam isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeam + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeam nameWithType: InGameView2Page.FormatingData.DisplayBlueTeam -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamScore +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamScore name: DisplayBlueTeamScore - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBlueTeamScore - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamScore - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBlueTeamScore + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamScore + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamScore nameWithType: InGameView2Page.FormatingData.DisplayBlueTeamScore -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamScore* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamScore* name: DisplayBlueTeamScore - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBlueTeamScore_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBlueTeamScore_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamScore isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamScore + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamScore nameWithType: InGameView2Page.FormatingData.DisplayBlueTeamScore -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamText name: DisplayBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBlueTeamText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBlueTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamText nameWithType: InGameView2Page.FormatingData.DisplayBlueTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamText* name: DisplayBlueTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayBlueTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayBlueTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayBlueTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayBlueTeamText nameWithType: InGameView2Page.FormatingData.DisplayBlueTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayDragonTimer +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayDragonTimer name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayDragonTimer - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayDragonTimer - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayDragonTimer + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayDragonTimer nameWithType: InGameView2Page.FormatingData.DisplayDragonTimer -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayDragonTimer* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayDragonTimer* name: DisplayDragonTimer - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayDragonTimer_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayDragonTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayDragonTimer_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayDragonTimer isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayDragonTimer + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayDragonTimer nameWithType: InGameView2Page.FormatingData.DisplayDragonTimer -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayHeraldBaronTimer +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayHeraldBaronTimer name: DisplayHeraldBaronTimer - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayHeraldBaronTimer - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayHeraldBaronTimer - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayHeraldBaronTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayHeraldBaronTimer + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayHeraldBaronTimer + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayHeraldBaronTimer nameWithType: InGameView2Page.FormatingData.DisplayHeraldBaronTimer -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayHeraldBaronTimer* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayHeraldBaronTimer* name: DisplayHeraldBaronTimer - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayHeraldBaronTimer_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayHeraldBaronTimer + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayHeraldBaronTimer_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayHeraldBaronTimer isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayHeraldBaronTimer + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayHeraldBaronTimer nameWithType: InGameView2Page.FormatingData.DisplayHeraldBaronTimer -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayLeftInfo +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayLeftInfo name: DisplayLeftInfo - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayLeftInfo - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayLeftInfo - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayLeftInfo + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayLeftInfo + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayLeftInfo + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayLeftInfo nameWithType: InGameView2Page.FormatingData.DisplayLeftInfo -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayLeftInfo* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayLeftInfo* name: DisplayLeftInfo - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayLeftInfo_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayLeftInfo + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayLeftInfo_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayLeftInfo isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayLeftInfo + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayLeftInfo nameWithType: InGameView2Page.FormatingData.DisplayLeftInfo -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedPlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedPlayerFrame name: DisplayRedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedPlayerFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedPlayerFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedPlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedPlayerFrame nameWithType: InGameView2Page.FormatingData.DisplayRedPlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedPlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedPlayerFrame* name: DisplayRedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedPlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedPlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedPlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedPlayerFrame nameWithType: InGameView2Page.FormatingData.DisplayRedPlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeam +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeam name: DisplayRedTeam - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedTeam - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeam - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedTeam + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeam + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeam nameWithType: InGameView2Page.FormatingData.DisplayRedTeam -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeam* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeam* name: DisplayRedTeam - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedTeam_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeam + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedTeam_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeam isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeam + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeam nameWithType: InGameView2Page.FormatingData.DisplayRedTeam -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamScore +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamScore name: DisplayRedTeamScore - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedTeamScore - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamScore - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedTeamScore + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamScore + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamScore nameWithType: InGameView2Page.FormatingData.DisplayRedTeamScore -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamScore* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamScore* name: DisplayRedTeamScore - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedTeamScore_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamScore + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedTeamScore_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamScore isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamScore + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamScore nameWithType: InGameView2Page.FormatingData.DisplayRedTeamScore -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamText name: DisplayRedTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedTeamText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamText nameWithType: InGameView2Page.FormatingData.DisplayRedTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamText* name: DisplayRedTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DisplayRedTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DisplayRedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DisplayRedTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DisplayRedTeamText nameWithType: InGameView2Page.FormatingData.DisplayRedTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DragonTimerFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DragonTimerFrame name: DragonTimerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DragonTimerFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.DragonTimerFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DragonTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DragonTimerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DragonTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DragonTimerFrame nameWithType: InGameView2Page.FormatingData.DragonTimerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.DragonTimerFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DragonTimerFrame* name: DragonTimerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_DragonTimerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.DragonTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_DragonTimerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DragonTimerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.DragonTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.DragonTimerFrame nameWithType: InGameView2Page.FormatingData.DragonTimerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.HeraldBaronTimerFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.HeraldBaronTimerFrame name: HeraldBaronTimerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_HeraldBaronTimerFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.HeraldBaronTimerFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.HeraldBaronTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_HeraldBaronTimerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.HeraldBaronTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.HeraldBaronTimerFrame nameWithType: InGameView2Page.FormatingData.HeraldBaronTimerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.HeraldBaronTimerFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.HeraldBaronTimerFrame* name: HeraldBaronTimerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_HeraldBaronTimerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.HeraldBaronTimerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_HeraldBaronTimerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.HeraldBaronTimerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.HeraldBaronTimerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.HeraldBaronTimerFrame nameWithType: InGameView2Page.FormatingData.HeraldBaronTimerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.LeftInfoFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.LeftInfoFrame name: LeftInfoFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_LeftInfoFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.LeftInfoFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.LeftInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_LeftInfoFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.LeftInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.LeftInfoFrame nameWithType: InGameView2Page.FormatingData.LeftInfoFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.LeftInfoFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.LeftInfoFrame* name: LeftInfoFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_LeftInfoFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.LeftInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_LeftInfoFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.LeftInfoFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.LeftInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.LeftInfoFrame nameWithType: InGameView2Page.FormatingData.LeftInfoFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.RedPlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedPlayerFrame name: RedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_RedPlayerFrame - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.RedPlayerFrame - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.RedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_RedPlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedPlayerFrame nameWithType: InGameView2Page.FormatingData.RedPlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.RedPlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedPlayerFrame* name: RedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_RedPlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.RedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_RedPlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedPlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.RedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedPlayerFrame nameWithType: InGameView2Page.FormatingData.RedPlayerFrame -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamScoreText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamScoreText name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_RedTeamScoreText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamScoreText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_RedTeamScoreText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamScoreText nameWithType: InGameView2Page.FormatingData.RedTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamScoreText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamScoreText* name: RedTeamScoreText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_RedTeamScoreText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamScoreText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_RedTeamScoreText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamScoreText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamScoreText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamScoreText nameWithType: InGameView2Page.FormatingData.RedTeamScoreText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamText +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamText name: RedTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_RedTeamText - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamText - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_RedTeamText + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamText nameWithType: InGameView2Page.FormatingData.RedTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamText* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamText* name: RedTeamText - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_RedTeamText_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamText + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_RedTeamText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamText isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.RedTeamText + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.RedTeamText nameWithType: InGameView2Page.FormatingData.RedTeamText -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.TeamBanner +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamBanner name: TeamBanner - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_TeamBanner - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.TeamBanner - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.TeamBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_TeamBanner + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamBanner + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamBanner nameWithType: InGameView2Page.FormatingData.TeamBanner -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.TeamBanner* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamBanner* name: TeamBanner - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_TeamBanner_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.TeamBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_TeamBanner_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamBanner isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.TeamBanner + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamBanner nameWithType: InGameView2Page.FormatingData.TeamBanner -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.TeamScoreBanner +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamScoreBanner name: TeamScoreBanner - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_TeamScoreBanner - commentId: P:OSL_Server.Pages.InGameView2Page.FormatingData.TeamScoreBanner - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.TeamScoreBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_TeamScoreBanner + commentId: P:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamScoreBanner + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamScoreBanner nameWithType: InGameView2Page.FormatingData.TeamScoreBanner -- uid: OSL_Server.Pages.InGameView2Page.FormatingData.TeamScoreBanner* +- uid: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamScoreBanner* name: TeamScoreBanner - href: apiserver/OSL_Server.Pages.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGameView2Page_FormatingData_TeamScoreBanner_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.FormatingData.TeamScoreBanner + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView2Page_FormatingData_TeamScoreBanner_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamScoreBanner isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.FormatingData.TeamScoreBanner + fullName: OSL_Server.Pages.InGame.InGameView2Page.FormatingData.TeamScoreBanner nameWithType: InGameView2Page.FormatingData.TeamScoreBanner -- uid: OSL_Server.Pages.InGameView2Page.ResetColor +- uid: OSL_Server.Pages.InGame.InGameView2Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.InGameView2Page.html#OSL_Server_Pages_InGameView2Page_ResetColor - commentId: M:OSL_Server.Pages.InGameView2Page.ResetColor - fullName: OSL_Server.Pages.InGameView2Page.ResetColor() + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.html#OSL_Server_Pages_InGame_InGameView2Page_ResetColor + commentId: M:OSL_Server.Pages.InGame.InGameView2Page.ResetColor + fullName: OSL_Server.Pages.InGame.InGameView2Page.ResetColor() nameWithType: InGameView2Page.ResetColor() -- uid: OSL_Server.Pages.InGameView2Page.ResetColor* +- uid: OSL_Server.Pages.InGame.InGameView2Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.InGameView2Page.html#OSL_Server_Pages_InGameView2Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.InGameView2Page.ResetColor + href: apiserver/OSL_Server.Pages.InGame.InGameView2Page.html#OSL_Server_Pages_InGame_InGameView2Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView2Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.InGameView2Page.ResetColor + fullName: OSL_Server.Pages.InGame.InGameView2Page.ResetColor nameWithType: InGameView2Page.ResetColor -- uid: OSL_Server.Pages.InGameView3Page +- uid: OSL_Server.Pages.InGame.InGameView3Page name: InGameView3Page - href: apiserver/OSL_Server.Pages.InGameView3Page.html - commentId: T:OSL_Server.Pages.InGameView3Page - fullName: OSL_Server.Pages.InGameView3Page + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.html + commentId: T:OSL_Server.Pages.InGame.InGameView3Page + fullName: OSL_Server.Pages.InGame.InGameView3Page nameWithType: InGameView3Page -- uid: OSL_Server.Pages.InGameView3Page.formatingData +- uid: OSL_Server.Pages.InGame.InGameView3Page.formatingData name: formatingData - href: apiserver/OSL_Server.Pages.InGameView3Page.html#OSL_Server_Pages_InGameView3Page_formatingData - commentId: F:OSL_Server.Pages.InGameView3Page.formatingData - fullName: OSL_Server.Pages.InGameView3Page.formatingData + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.html#OSL_Server_Pages_InGame_InGameView3Page_formatingData + commentId: F:OSL_Server.Pages.InGame.InGameView3Page.formatingData + fullName: OSL_Server.Pages.InGame.InGameView3Page.formatingData nameWithType: InGameView3Page.formatingData -- uid: OSL_Server.Pages.InGameView3Page.FormatingData +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData name: InGameView3Page.FormatingData - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html - commentId: T:OSL_Server.Pages.InGameView3Page.FormatingData - fullName: OSL_Server.Pages.InGameView3Page.FormatingData + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html + commentId: T:OSL_Server.Pages.InGame.InGameView3Page.FormatingData + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData nameWithType: InGameView3Page.FormatingData -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.BluePlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.BluePlayerFrame name: BluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_BluePlayerFrame - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.BluePlayerFrame - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.BluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_BluePlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.BluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.BluePlayerFrame nameWithType: InGameView3Page.FormatingData.BluePlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.BluePlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.BluePlayerFrame* name: BluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_BluePlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.BluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_BluePlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.BluePlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.BluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.BluePlayerFrame nameWithType: InGameView3Page.FormatingData.BluePlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.ColorReplayInfoText +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ColorReplayInfoText name: ColorReplayInfoText - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_ColorReplayInfoText - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.ColorReplayInfoText - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.ColorReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_ColorReplayInfoText + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ColorReplayInfoText + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ColorReplayInfoText nameWithType: InGameView3Page.FormatingData.ColorReplayInfoText -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.ColorReplayInfoText* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ColorReplayInfoText* name: ColorReplayInfoText - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_ColorReplayInfoText_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.ColorReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_ColorReplayInfoText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ColorReplayInfoText isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.ColorReplayInfoText + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ColorReplayInfoText nameWithType: InGameView3Page.FormatingData.ColorReplayInfoText -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultPatch name: DefaultPatch - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DefaultPatch - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.DefaultPatch - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultPatch nameWithType: InGameView3Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultPatch* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultPatch* name: DefaultPatch - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DefaultPatch_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.DefaultPatch + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultPatch isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultPatch nameWithType: InGameView3Page.FormatingData.DefaultPatch -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultRegion name: DefaultRegion - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DefaultRegion - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.DefaultRegion - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultRegion nameWithType: InGameView3Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultRegion* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultRegion* name: DefaultRegion - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DefaultRegion_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.DefaultRegion + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultRegion isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DefaultRegion nameWithType: InGameView3Page.FormatingData.DefaultRegion -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayBluePlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayBluePlayerFrame name: DisplayBluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DisplayBluePlayerFrame - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.DisplayBluePlayerFrame - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayBluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DisplayBluePlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayBluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayBluePlayerFrame nameWithType: InGameView3Page.FormatingData.DisplayBluePlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayBluePlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayBluePlayerFrame* name: DisplayBluePlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DisplayBluePlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.DisplayBluePlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DisplayBluePlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayBluePlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayBluePlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayBluePlayerFrame nameWithType: InGameView3Page.FormatingData.DisplayBluePlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayRedPlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayRedPlayerFrame name: DisplayRedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DisplayRedPlayerFrame - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.DisplayRedPlayerFrame - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayRedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DisplayRedPlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayRedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayRedPlayerFrame nameWithType: InGameView3Page.FormatingData.DisplayRedPlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayRedPlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayRedPlayerFrame* name: DisplayRedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DisplayRedPlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.DisplayRedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DisplayRedPlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayRedPlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayRedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayRedPlayerFrame nameWithType: InGameView3Page.FormatingData.DisplayRedPlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayReplayInfoFrame +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayReplayInfoFrame name: DisplayReplayInfoFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DisplayReplayInfoFrame - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.DisplayReplayInfoFrame - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayReplayInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DisplayReplayInfoFrame + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayReplayInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayReplayInfoFrame nameWithType: InGameView3Page.FormatingData.DisplayReplayInfoFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayReplayInfoFrame* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayReplayInfoFrame* name: DisplayReplayInfoFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_DisplayReplayInfoFrame_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.DisplayReplayInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_DisplayReplayInfoFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayReplayInfoFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.DisplayReplayInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.DisplayReplayInfoFrame nameWithType: InGameView3Page.FormatingData.DisplayReplayInfoFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.RedPlayerFrame +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.RedPlayerFrame name: RedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_RedPlayerFrame - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.RedPlayerFrame - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.RedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_RedPlayerFrame + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.RedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.RedPlayerFrame nameWithType: InGameView3Page.FormatingData.RedPlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.RedPlayerFrame* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.RedPlayerFrame* name: RedPlayerFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_RedPlayerFrame_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.RedPlayerFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_RedPlayerFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.RedPlayerFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.RedPlayerFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.RedPlayerFrame nameWithType: InGameView3Page.FormatingData.RedPlayerFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoFrame +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoFrame name: ReplayInfoFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_ReplayInfoFrame - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoFrame - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_ReplayInfoFrame + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoFrame nameWithType: InGameView3Page.FormatingData.ReplayInfoFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoFrame* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoFrame* name: ReplayInfoFrame - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_ReplayInfoFrame_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoFrame + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_ReplayInfoFrame_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoFrame isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoFrame + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoFrame nameWithType: InGameView3Page.FormatingData.ReplayInfoFrame -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoText +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoText name: ReplayInfoText - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_ReplayInfoText - commentId: P:OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoText - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_ReplayInfoText + commentId: P:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoText + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoText nameWithType: InGameView3Page.FormatingData.ReplayInfoText -- uid: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoText* +- uid: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoText* name: ReplayInfoText - href: apiserver/OSL_Server.Pages.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGameView3Page_FormatingData_ReplayInfoText_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoText + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.FormatingData.html#OSL_Server_Pages_InGame_InGameView3Page_FormatingData_ReplayInfoText_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoText isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.FormatingData.ReplayInfoText + fullName: OSL_Server.Pages.InGame.InGameView3Page.FormatingData.ReplayInfoText nameWithType: InGameView3Page.FormatingData.ReplayInfoText -- uid: OSL_Server.Pages.InGameView3Page.ResetColor +- uid: OSL_Server.Pages.InGame.InGameView3Page.ResetColor name: ResetColor() - href: apiserver/OSL_Server.Pages.InGameView3Page.html#OSL_Server_Pages_InGameView3Page_ResetColor - commentId: M:OSL_Server.Pages.InGameView3Page.ResetColor - fullName: OSL_Server.Pages.InGameView3Page.ResetColor() + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.html#OSL_Server_Pages_InGame_InGameView3Page_ResetColor + commentId: M:OSL_Server.Pages.InGame.InGameView3Page.ResetColor + fullName: OSL_Server.Pages.InGame.InGameView3Page.ResetColor() nameWithType: InGameView3Page.ResetColor() -- uid: OSL_Server.Pages.InGameView3Page.ResetColor* +- uid: OSL_Server.Pages.InGame.InGameView3Page.ResetColor* name: ResetColor - href: apiserver/OSL_Server.Pages.InGameView3Page.html#OSL_Server_Pages_InGameView3Page_ResetColor_ - commentId: Overload:OSL_Server.Pages.InGameView3Page.ResetColor + href: apiserver/OSL_Server.Pages.InGame.InGameView3Page.html#OSL_Server_Pages_InGame_InGameView3Page_ResetColor_ + commentId: Overload:OSL_Server.Pages.InGame.InGameView3Page.ResetColor isSpec: "True" - fullName: OSL_Server.Pages.InGameView3Page.ResetColor + fullName: OSL_Server.Pages.InGame.InGameView3Page.ResetColor nameWithType: InGameView3Page.ResetColor - uid: OSL_Server.Pages.RecapLinkPage name: RecapLinkPage @@ -9693,66 +19878,2308 @@ references: commentId: T:OSL_Server.Pages.RecapLinkPage fullName: OSL_Server.Pages.RecapLinkPage nameWithType: RecapLinkPage +- uid: OSL_Server.Pages.Runes + name: OSL_Server.Pages.Runes + href: apiserver/OSL_Server.Pages.Runes.html + commentId: N:OSL_Server.Pages.Runes + fullName: OSL_Server.Pages.Runes + nameWithType: OSL_Server.Pages.Runes +- uid: OSL_Server.Pages.Runes.RunesAdcPage + name: RunesAdcPage + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html + commentId: T:OSL_Server.Pages.Runes.RunesAdcPage + fullName: OSL_Server.Pages.Runes.RunesAdcPage + nameWithType: RunesAdcPage +- uid: OSL_Server.Pages.Runes.RunesAdcPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesAdcPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesAdcPage.formatingData + nameWithType: RunesAdcPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData + name: RunesAdcPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData + nameWithType: RunesAdcPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradient + nameWithType: RunesAdcPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradient + nameWithType: RunesAdcPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor1 + name: BackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientColor1 + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor1 + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor1 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientColor1 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor1* + name: BackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientColor1_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor1 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor1 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientColor1 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor2 + name: BackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientColor2 + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor2 + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor2 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientColor2 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor2* + name: BackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientColor2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientColor2 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientColor2 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientDeg + name: BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientDeg + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientDeg + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientDeg + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientDeg +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientDeg* + name: BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientDeg_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientDeg + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientDeg + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientDeg +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent1 + name: BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientPercent1 + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent1 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent1* + name: BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientPercent1_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent1 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent2 + name: BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientPercent2 + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent2 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent2* + name: BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BackgroudGradientPercent2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BackgroudGradientPercent2 + nameWithType: RunesAdcPage.FormatingData.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BakgroundPicture + nameWithType: RunesAdcPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BakgroundPicture + nameWithType: RunesAdcPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesAdcPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesAdcPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesAdcPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesAdcPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesAdcPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesAdcPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultPatch + nameWithType: RunesAdcPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultPatch + nameWithType: RunesAdcPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultRegion + nameWithType: RunesAdcPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.DefaultRegion + nameWithType: RunesAdcPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.LanePicture + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_LanePicture + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.LanePicture + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.LanePicture + nameWithType: RunesAdcPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.LanePicture* + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_LanePicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.LanePicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.LanePicture + nameWithType: RunesAdcPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesAdcPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesAdcPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesAdcPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesAdcPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesAdcPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesAdcPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesAdcPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcPage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesAdcPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesAdcPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesAdcPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesAdcPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesAdcPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.GetChampionPicturePath + nameWithType: RunesAdcPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesAdcPage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesAdcPage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesAdcPage.GetPerksIconPath(System.Int32) + nameWithType: RunesAdcPage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesAdcPage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.GetPerksIconPath + nameWithType: RunesAdcPage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesAdcPage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesAdcPage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesAdcPage.ResetColor() + nameWithType: RunesAdcPage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesAdcPage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesAdcPage.html#OSL_Server_Pages_Runes_RunesAdcPage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcPage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcPage.ResetColor + nameWithType: RunesAdcPage.ResetColor +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage + name: RunesAdcSuppPage + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html + commentId: T:OSL_Server.Pages.Runes.RunesAdcSuppPage + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage + nameWithType: RunesAdcSuppPage +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesAdcSuppPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.formatingData + nameWithType: RunesAdcSuppPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData + name: RunesAdcSuppPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData + nameWithType: RunesAdcSuppPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BackgroudGradient + nameWithType: RunesAdcSuppPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BackgroudGradient + nameWithType: RunesAdcSuppPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BakgroundPicture + nameWithType: RunesAdcSuppPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BakgroundPicture + nameWithType: RunesAdcSuppPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesAdcSuppPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesAdcSuppPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesAdcSuppPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultPatch + nameWithType: RunesAdcSuppPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultPatch + nameWithType: RunesAdcSuppPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultRegion + nameWithType: RunesAdcSuppPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.DefaultRegion + nameWithType: RunesAdcSuppPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureAdc + name: LanePictureAdc + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_LanePictureAdc + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureAdc + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureAdc + nameWithType: RunesAdcSuppPage.FormatingData.LanePictureAdc +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureAdc* + name: LanePictureAdc + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_LanePictureAdc_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureAdc + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureAdc + nameWithType: RunesAdcSuppPage.FormatingData.LanePictureAdc +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureSupp + name: LanePictureSupp + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_LanePictureSupp + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureSupp + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureSupp + nameWithType: RunesAdcSuppPage.FormatingData.LanePictureSupp +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureSupp* + name: LanePictureSupp + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_LanePictureSupp_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureSupp + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.LanePictureSupp + nameWithType: RunesAdcSuppPage.FormatingData.LanePictureSupp +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesAdcSuppPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesAdcSuppPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesAdcSuppPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesAdcSuppPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesAdcSuppPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesAdcSuppPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetChampionPicturePath + nameWithType: RunesAdcSuppPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesAdcSuppPage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetPerksIconPath(System.Int32) + nameWithType: RunesAdcSuppPage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.GetPerksIconPath + nameWithType: RunesAdcSuppPage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesAdcSuppPage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.ResetColor() + nameWithType: RunesAdcSuppPage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesAdcSuppPage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesAdcSuppPage.html#OSL_Server_Pages_Runes_RunesAdcSuppPage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAdcSuppPage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAdcSuppPage.ResetColor + nameWithType: RunesAdcSuppPage.ResetColor +- uid: OSL_Server.Pages.Runes.RunesAllPage + name: RunesAllPage + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html + commentId: T:OSL_Server.Pages.Runes.RunesAllPage + fullName: OSL_Server.Pages.Runes.RunesAllPage + nameWithType: RunesAllPage +- uid: OSL_Server.Pages.Runes.RunesAllPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesAllPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesAllPage.formatingData + nameWithType: RunesAllPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData + name: RunesAllPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesAllPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData + nameWithType: RunesAllPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradient + nameWithType: RunesAllPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradient + nameWithType: RunesAllPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor1 + name: BackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientColor1 + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor1 + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor1 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientColor1 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor1* + name: BackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientColor1_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor1 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor1 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientColor1 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor2 + name: BackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientColor2 + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor2 + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor2 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientColor2 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor2* + name: BackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientColor2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientColor2 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientColor2 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientDeg + name: BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientDeg + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientDeg + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientDeg + nameWithType: RunesAllPage.FormatingData.BackgroudGradientDeg +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientDeg* + name: BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientDeg_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientDeg + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientDeg + nameWithType: RunesAllPage.FormatingData.BackgroudGradientDeg +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent1 + name: BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientPercent1 + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent1 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent1* + name: BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientPercent1_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent1 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent2 + name: BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientPercent2 + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent2 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent2* + name: BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BackgroudGradientPercent2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BackgroudGradientPercent2 + nameWithType: RunesAllPage.FormatingData.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BakgroundPicture + nameWithType: RunesAllPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BakgroundPicture + nameWithType: RunesAllPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesAllPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesAllPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesAllPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesAllPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesAllPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesAllPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultPatch + nameWithType: RunesAllPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultPatch + nameWithType: RunesAllPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultRegion + nameWithType: RunesAllPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.DefaultRegion + nameWithType: RunesAllPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureAdc + name: LanePictureAdc + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureAdc + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureAdc + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureAdc + nameWithType: RunesAllPage.FormatingData.LanePictureAdc +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureAdc* + name: LanePictureAdc + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureAdc_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureAdc + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureAdc + nameWithType: RunesAllPage.FormatingData.LanePictureAdc +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureJungle + name: LanePictureJungle + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureJungle + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureJungle + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureJungle + nameWithType: RunesAllPage.FormatingData.LanePictureJungle +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureJungle* + name: LanePictureJungle + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureJungle_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureJungle + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureJungle + nameWithType: RunesAllPage.FormatingData.LanePictureJungle +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureMid + name: LanePictureMid + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureMid + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureMid + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureMid + nameWithType: RunesAllPage.FormatingData.LanePictureMid +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureMid* + name: LanePictureMid + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureMid_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureMid + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureMid + nameWithType: RunesAllPage.FormatingData.LanePictureMid +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureSupp + name: LanePictureSupp + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureSupp + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureSupp + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureSupp + nameWithType: RunesAllPage.FormatingData.LanePictureSupp +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureSupp* + name: LanePictureSupp + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureSupp_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureSupp + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureSupp + nameWithType: RunesAllPage.FormatingData.LanePictureSupp +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureTop + name: LanePictureTop + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureTop + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureTop + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureTop + nameWithType: RunesAllPage.FormatingData.LanePictureTop +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureTop* + name: LanePictureTop + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_LanePictureTop_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureTop + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.LanePictureTop + nameWithType: RunesAllPage.FormatingData.LanePictureTop +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesAllPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesAllPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesAllPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesAllPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesAllPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesAllPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesAllPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.FormatingData.html#OSL_Server_Pages_Runes_RunesAllPage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesAllPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesAllPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesAllPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesAllPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesAllPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesAllPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.GetChampionPicturePath + nameWithType: RunesAllPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesAllPage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesAllPage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesAllPage.GetPerksIconPath(System.Int32) + nameWithType: RunesAllPage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesAllPage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.GetPerksIconPath + nameWithType: RunesAllPage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesAllPage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesAllPage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesAllPage.ResetColor() + nameWithType: RunesAllPage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesAllPage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesAllPage.html#OSL_Server_Pages_Runes_RunesAllPage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesAllPage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesAllPage.ResetColor + nameWithType: RunesAllPage.ResetColor +- uid: OSL_Server.Pages.Runes.RunesJunglePage + name: RunesJunglePage + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html + commentId: T:OSL_Server.Pages.Runes.RunesJunglePage + fullName: OSL_Server.Pages.Runes.RunesJunglePage + nameWithType: RunesJunglePage +- uid: OSL_Server.Pages.Runes.RunesJunglePage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesJunglePage.formatingData + fullName: OSL_Server.Pages.Runes.RunesJunglePage.formatingData + nameWithType: RunesJunglePage.formatingData +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData + name: RunesJunglePage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData + nameWithType: RunesJunglePage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BackgroudGradient + nameWithType: RunesJunglePage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BackgroudGradient + nameWithType: RunesJunglePage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BakgroundPicture + nameWithType: RunesJunglePage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BakgroundPicture + nameWithType: RunesJunglePage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesJunglePage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesJunglePage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesJunglePage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesJunglePage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesJunglePage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesJunglePage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultPatch + nameWithType: RunesJunglePage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultPatch + nameWithType: RunesJunglePage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultRegion + nameWithType: RunesJunglePage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.DefaultRegion + nameWithType: RunesJunglePage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.LanePicture + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_LanePicture + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.LanePicture + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.LanePicture + nameWithType: RunesJunglePage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.LanePicture* + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_LanePicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.LanePicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.LanePicture + nameWithType: RunesJunglePage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesJunglePage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesJunglePage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesJunglePage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesJunglePage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesJunglePage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesJunglePage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesJunglePage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.html#OSL_Server_Pages_Runes_RunesJunglePage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesJunglePage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesJunglePage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesJunglePage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesJunglePage.GetChampionPicturePath(System.Int32) + nameWithType: RunesJunglePage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesJunglePage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.GetChampionPicturePath + nameWithType: RunesJunglePage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesJunglePage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesJunglePage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesJunglePage.GetPerksIconPath(System.Int32) + nameWithType: RunesJunglePage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesJunglePage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.GetPerksIconPath + nameWithType: RunesJunglePage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesJunglePage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesJunglePage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesJunglePage.ResetColor() + nameWithType: RunesJunglePage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesJunglePage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesJunglePage.html#OSL_Server_Pages_Runes_RunesJunglePage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesJunglePage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesJunglePage.ResetColor + nameWithType: RunesJunglePage.ResetColor +- uid: OSL_Server.Pages.Runes.RunesMidPage + name: RunesMidPage + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html + commentId: T:OSL_Server.Pages.Runes.RunesMidPage + fullName: OSL_Server.Pages.Runes.RunesMidPage + nameWithType: RunesMidPage +- uid: OSL_Server.Pages.Runes.RunesMidPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesMidPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesMidPage.formatingData + nameWithType: RunesMidPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData + name: RunesMidPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesMidPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData + nameWithType: RunesMidPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BackgroudGradient + nameWithType: RunesMidPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BackgroudGradient + nameWithType: RunesMidPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BakgroundPicture + nameWithType: RunesMidPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BakgroundPicture + nameWithType: RunesMidPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesMidPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesMidPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesMidPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesMidPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesMidPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesMidPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultPatch + nameWithType: RunesMidPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultPatch + nameWithType: RunesMidPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultRegion + nameWithType: RunesMidPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.DefaultRegion + nameWithType: RunesMidPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.LanePicture + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_LanePicture + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.LanePicture + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.LanePicture + nameWithType: RunesMidPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.LanePicture* + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_LanePicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.LanePicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.LanePicture + nameWithType: RunesMidPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesMidPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesMidPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesMidPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesMidPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesMidPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesMidPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesMidPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.FormatingData.html#OSL_Server_Pages_Runes_RunesMidPage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesMidPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesMidPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesMidPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesMidPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesMidPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesMidPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.GetChampionPicturePath + nameWithType: RunesMidPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesMidPage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesMidPage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesMidPage.GetPerksIconPath(System.Int32) + nameWithType: RunesMidPage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesMidPage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.GetPerksIconPath + nameWithType: RunesMidPage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesMidPage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesMidPage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesMidPage.ResetColor() + nameWithType: RunesMidPage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesMidPage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesMidPage.html#OSL_Server_Pages_Runes_RunesMidPage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesMidPage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesMidPage.ResetColor + nameWithType: RunesMidPage.ResetColor +- uid: OSL_Server.Pages.Runes.RunesPage + name: RunesPage + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html + commentId: T:OSL_Server.Pages.Runes.RunesPage + fullName: OSL_Server.Pages.Runes.RunesPage + nameWithType: RunesPage +- uid: OSL_Server.Pages.Runes.RunesPage.colorPicker + name: colorPicker + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_colorPicker + commentId: F:OSL_Server.Pages.Runes.RunesPage.colorPicker + fullName: OSL_Server.Pages.Runes.RunesPage.colorPicker + nameWithType: RunesPage.colorPicker +- uid: OSL_Server.Pages.Runes.RunesPage.colorValue + name: colorValue + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_colorValue + commentId: F:OSL_Server.Pages.Runes.RunesPage.colorValue + fullName: OSL_Server.Pages.Runes.RunesPage.colorValue + nameWithType: RunesPage.colorValue +- uid: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksList(System.String) + name: CreateSummonerPerksList(String) + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_CreateSummonerPerksList_System_String_ + commentId: M:OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksList(System.String) + fullName: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksList(System.String) + nameWithType: RunesPage.CreateSummonerPerksList(String) +- uid: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksList* + name: CreateSummonerPerksList + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_CreateSummonerPerksList_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksList + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksList + nameWithType: RunesPage.CreateSummonerPerksList +- uid: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksListV2(System.String) + name: CreateSummonerPerksListV2(String) + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_CreateSummonerPerksListV2_System_String_ + commentId: M:OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksListV2(System.String) + fullName: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksListV2(System.String) + nameWithType: RunesPage.CreateSummonerPerksListV2(String) +- uid: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksListV2* + name: CreateSummonerPerksListV2 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_CreateSummonerPerksListV2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksListV2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.CreateSummonerPerksListV2 + nameWithType: RunesPage.CreateSummonerPerksListV2 +- uid: OSL_Server.Pages.Runes.RunesPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesPage.formatingData + nameWithType: RunesPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesPage.FormatingData + name: RunesPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesPage.FormatingData + nameWithType: RunesPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html#OSL_Server_Pages_Runes_RunesPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultPatch + nameWithType: RunesPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html#OSL_Server_Pages_Runes_RunesPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultPatch + nameWithType: RunesPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html#OSL_Server_Pages_Runes_RunesPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultRegion + nameWithType: RunesPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.FormatingData.html#OSL_Server_Pages_Runes_RunesPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.FormatingData.DefaultRegion + nameWithType: RunesPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.GetChampionPicturePath + nameWithType: RunesPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks + name: RunesPage.InfoForPerks + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html + commentId: T:OSL_Server.Pages.Runes.RunesPage.InfoForPerks + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks + nameWithType: RunesPage.InfoForPerks +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.ChampionId + name: ChampionId + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_ChampionId + commentId: P:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.ChampionId + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.ChampionId + nameWithType: RunesPage.InfoForPerks.ChampionId +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.ChampionId* + name: ChampionId + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_ChampionId_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.ChampionId + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.ChampionId + nameWithType: RunesPage.InfoForPerks.ChampionId +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Lane + name: Lane + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_Lane + commentId: P:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Lane + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Lane + nameWithType: RunesPage.InfoForPerks.Lane +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Lane* + name: Lane + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_Lane_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Lane + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Lane + nameWithType: RunesPage.InfoForPerks.Lane +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Perks + name: Perks + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_Perks + commentId: P:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Perks + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Perks + nameWithType: RunesPage.InfoForPerks.Perks +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Perks* + name: Perks + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_Perks_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Perks + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.Perks + nameWithType: RunesPage.InfoForPerks.Perks +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.SummonerName + name: SummonerName + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_SummonerName + commentId: P:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.SummonerName + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.SummonerName + nameWithType: RunesPage.InfoForPerks.SummonerName +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.SummonerName* + name: SummonerName + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_SummonerName_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.SummonerName + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.SummonerName + nameWithType: RunesPage.InfoForPerks.SummonerName +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.TeamId + name: TeamId + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_TeamId + commentId: P:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.TeamId + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.TeamId + nameWithType: RunesPage.InfoForPerks.TeamId +- uid: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.TeamId* + name: TeamId + href: apiserver/OSL_Server.Pages.Runes.RunesPage.InfoForPerks.html#OSL_Server_Pages_Runes_RunesPage_InfoForPerks_TeamId_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.InfoForPerks.TeamId + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.InfoForPerks.TeamId + nameWithType: RunesPage.InfoForPerks.TeamId +- uid: OSL_Server.Pages.Runes.RunesPage.LaneInfo + name: RunesPage.LaneInfo + href: apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html + commentId: T:OSL_Server.Pages.Runes.RunesPage.LaneInfo + fullName: OSL_Server.Pages.Runes.RunesPage.LaneInfo + nameWithType: RunesPage.LaneInfo +- uid: OSL_Server.Pages.Runes.RunesPage.LaneInfo.lanes + name: lanes + href: apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html#OSL_Server_Pages_Runes_RunesPage_LaneInfo_lanes + commentId: P:OSL_Server.Pages.Runes.RunesPage.LaneInfo.lanes + fullName: OSL_Server.Pages.Runes.RunesPage.LaneInfo.lanes + nameWithType: RunesPage.LaneInfo.lanes +- uid: OSL_Server.Pages.Runes.RunesPage.LaneInfo.lanes* + name: lanes + href: apiserver/OSL_Server.Pages.Runes.RunesPage.LaneInfo.html#OSL_Server_Pages_Runes_RunesPage_LaneInfo_lanes_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.LaneInfo.lanes + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.LaneInfo.lanes + nameWithType: RunesPage.LaneInfo.lanes +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes + name: RunesPage.Lanes + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html + commentId: T:OSL_Server.Pages.Runes.RunesPage.Lanes + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes + nameWithType: RunesPage.Lanes +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes.ADC + name: ADC + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html#OSL_Server_Pages_Runes_RunesPage_Lanes_ADC + commentId: F:OSL_Server.Pages.Runes.RunesPage.Lanes.ADC + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes.ADC + nameWithType: RunesPage.Lanes.ADC +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes.Jungle + name: Jungle + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html#OSL_Server_Pages_Runes_RunesPage_Lanes_Jungle + commentId: F:OSL_Server.Pages.Runes.RunesPage.Lanes.Jungle + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes.Jungle + nameWithType: RunesPage.Lanes.Jungle +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes.Mid + name: Mid + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html#OSL_Server_Pages_Runes_RunesPage_Lanes_Mid + commentId: F:OSL_Server.Pages.Runes.RunesPage.Lanes.Mid + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes.Mid + nameWithType: RunesPage.Lanes.Mid +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes.None + name: None + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html#OSL_Server_Pages_Runes_RunesPage_Lanes_None + commentId: F:OSL_Server.Pages.Runes.RunesPage.Lanes.None + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes.None + nameWithType: RunesPage.Lanes.None +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes.Support + name: Support + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html#OSL_Server_Pages_Runes_RunesPage_Lanes_Support + commentId: F:OSL_Server.Pages.Runes.RunesPage.Lanes.Support + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes.Support + nameWithType: RunesPage.Lanes.Support +- uid: OSL_Server.Pages.Runes.RunesPage.Lanes.Top + name: Top + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Lanes.html#OSL_Server_Pages_Runes_RunesPage_Lanes_Top + commentId: F:OSL_Server.Pages.Runes.RunesPage.Lanes.Top + fullName: OSL_Server.Pages.Runes.RunesPage.Lanes.Top + nameWithType: RunesPage.Lanes.Top +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay + name: RunesPage.Overlay + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html + commentId: T:OSL_Server.Pages.Runes.RunesPage.Overlay + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay + nameWithType: RunesPage.Overlay +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientDeg + name: BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientDeg + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientDeg + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientDeg + nameWithType: RunesPage.Overlay.BackgroudGradientDeg +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientDeg* + name: BackgroudGradientDeg + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientDeg_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientDeg + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientDeg + nameWithType: RunesPage.Overlay.BackgroudGradientDeg +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent1 + name: BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientPercent1 + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent1 + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent1 + nameWithType: RunesPage.Overlay.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent1* + name: BackgroudGradientPercent1 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientPercent1_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent1 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent1 + nameWithType: RunesPage.Overlay.BackgroudGradientPercent1 +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent2 + name: BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientPercent2 + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent2 + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent2 + nameWithType: RunesPage.Overlay.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent2* + name: BackgroudGradientPercent2 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientPercent2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientPercent2 + nameWithType: RunesPage.Overlay.BackgroudGradientPercent2 +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientSubmit + name: BackgroudGradientSubmit() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientSubmit + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientSubmit + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientSubmit() + nameWithType: RunesPage.Overlay.BackgroudGradientSubmit() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientSubmit* + name: BackgroudGradientSubmit + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroudGradientSubmit_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientSubmit + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroudGradientSubmit + nameWithType: RunesPage.Overlay.BackgroudGradientSubmit +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPicture + name: BackgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPicture + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPicture + nameWithType: RunesPage.Overlay.BackgroundPicture +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPicture* + name: BackgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPicture + nameWithType: RunesPage.Overlay.BackgroundPicture +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPictureSubmit + name: BackgroundPictureSubmit() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroundPictureSubmit + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPictureSubmit + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPictureSubmit() + nameWithType: RunesPage.Overlay.BackgroundPictureSubmit() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPictureSubmit* + name: BackgroundPictureSubmit + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BackgroundPictureSubmit_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPictureSubmit + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BackgroundPictureSubmit + nameWithType: RunesPage.Overlay.BackgroundPictureSubmit +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampion + nameWithType: RunesPage.Overlay.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampion + nameWithType: RunesPage.Overlay.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionNotSet + name: BlueSideColorBorderChampionNotSet + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BlueSideColorBorderChampionNotSet + commentId: F:OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionNotSet + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionNotSet + nameWithType: RunesPage.Overlay.BlueSideColorBorderChampionNotSet +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionSubmit + name: BlueSideColorBorderChampionSubmit() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BlueSideColorBorderChampionSubmit + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionSubmit + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionSubmit() + nameWithType: RunesPage.Overlay.BlueSideColorBorderChampionSubmit() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionSubmit* + name: BlueSideColorBorderChampionSubmit + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_BlueSideColorBorderChampionSubmit_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionSubmit + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.BlueSideColorBorderChampionSubmit + nameWithType: RunesPage.Overlay.BlueSideColorBorderChampionSubmit +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackground + name: ForegroundBackground + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_ForegroundBackground + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackground + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackground + nameWithType: RunesPage.Overlay.ForegroundBackground +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackground* + name: ForegroundBackground + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_ForegroundBackground_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackground + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackground + nameWithType: RunesPage.Overlay.ForegroundBackground +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackgroundSubmit + name: ForegroundBackgroundSubmit() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_ForegroundBackgroundSubmit + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackgroundSubmit + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackgroundSubmit() + nameWithType: RunesPage.Overlay.ForegroundBackgroundSubmit() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackgroundSubmit* + name: ForegroundBackgroundSubmit + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_ForegroundBackgroundSubmit_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackgroundSubmit + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.ForegroundBackgroundSubmit + nameWithType: RunesPage.Overlay.ForegroundBackgroundSubmit +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampion + nameWithType: RunesPage.Overlay.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampion + nameWithType: RunesPage.Overlay.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionNotSet + name: RedSideColorBorderChampionNotSet + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_RedSideColorBorderChampionNotSet + commentId: F:OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionNotSet + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionNotSet + nameWithType: RunesPage.Overlay.RedSideColorBorderChampionNotSet +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionSubmit + name: RedSideColorBorderChampionSubmit() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_RedSideColorBorderChampionSubmit + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionSubmit + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionSubmit() + nameWithType: RunesPage.Overlay.RedSideColorBorderChampionSubmit() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionSubmit* + name: RedSideColorBorderChampionSubmit + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_RedSideColorBorderChampionSubmit_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionSubmit + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.RedSideColorBorderChampionSubmit + nameWithType: RunesPage.Overlay.RedSideColorBorderChampionSubmit +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor1 + name: SetBackgroudGradientColor1() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBackgroudGradientColor1 + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor1 + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor1() + nameWithType: RunesPage.Overlay.SetBackgroudGradientColor1() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor1* + name: SetBackgroudGradientColor1 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBackgroudGradientColor1_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor1 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor1 + nameWithType: RunesPage.Overlay.SetBackgroudGradientColor1 +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor2 + name: SetBackgroudGradientColor2() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBackgroudGradientColor2 + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor2 + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor2() + nameWithType: RunesPage.Overlay.SetBackgroudGradientColor2() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor2* + name: SetBackgroudGradientColor2 + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBackgroudGradientColor2_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor2 + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBackgroudGradientColor2 + nameWithType: RunesPage.Overlay.SetBackgroudGradientColor2 +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorBorderChampion + name: SetBlueSideColorBorderChampion() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBlueSideColorBorderChampion + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorBorderChampion() + nameWithType: RunesPage.Overlay.SetBlueSideColorBorderChampion() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorBorderChampion* + name: SetBlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorBorderChampion + nameWithType: RunesPage.Overlay.SetBlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorSeparationBar + name: SetBlueSideColorSeparationBar() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBlueSideColorSeparationBar + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorSeparationBar() + nameWithType: RunesPage.Overlay.SetBlueSideColorSeparationBar() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorSeparationBar* + name: SetBlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorSeparationBar + nameWithType: RunesPage.Overlay.SetBlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorTextSummoner + name: SetBlueSideColorTextSummoner() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBlueSideColorTextSummoner + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorTextSummoner() + nameWithType: RunesPage.Overlay.SetBlueSideColorTextSummoner() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorTextSummoner* + name: SetBlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetBlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetBlueSideColorTextSummoner + nameWithType: RunesPage.Overlay.SetBlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorBorderChampion + name: SetRedSideColorBorderChampion() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetRedSideColorBorderChampion + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorBorderChampion() + nameWithType: RunesPage.Overlay.SetRedSideColorBorderChampion() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorBorderChampion* + name: SetRedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetRedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorBorderChampion + nameWithType: RunesPage.Overlay.SetRedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorSeparationBar + name: SetRedSideColorSeparationBar() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetRedSideColorSeparationBar + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorSeparationBar() + nameWithType: RunesPage.Overlay.SetRedSideColorSeparationBar() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorSeparationBar* + name: SetRedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetRedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorSeparationBar + nameWithType: RunesPage.Overlay.SetRedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorTextSummoner + name: SetRedSideColorTextSummoner() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetRedSideColorTextSummoner + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorTextSummoner() + nameWithType: RunesPage.Overlay.SetRedSideColorTextSummoner() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorTextSummoner* + name: SetRedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_SetRedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.SetRedSideColorTextSummoner + nameWithType: RunesPage.Overlay.SetRedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsBlueSideColorBorderChampion + name: TempsBlueSideColorBorderChampion() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_TempsBlueSideColorBorderChampion + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.TempsBlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsBlueSideColorBorderChampion() + nameWithType: RunesPage.Overlay.TempsBlueSideColorBorderChampion() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsBlueSideColorBorderChampion* + name: TempsBlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_TempsBlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.TempsBlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsBlueSideColorBorderChampion + nameWithType: RunesPage.Overlay.TempsBlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsRedSideColorBorderChampion + name: TempsRedSideColorBorderChampion() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_TempsRedSideColorBorderChampion + commentId: M:OSL_Server.Pages.Runes.RunesPage.Overlay.TempsRedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsRedSideColorBorderChampion() + nameWithType: RunesPage.Overlay.TempsRedSideColorBorderChampion() +- uid: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsRedSideColorBorderChampion* + name: TempsRedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Overlay.html#OSL_Server_Pages_Runes_RunesPage_Overlay_TempsRedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Overlay.TempsRedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Overlay.TempsRedSideColorBorderChampion + nameWithType: RunesPage.Overlay.TempsRedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesPage.Perks + name: RunesPage.Perks + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html + commentId: T:OSL_Server.Pages.Runes.RunesPage.Perks + fullName: OSL_Server.Pages.Runes.RunesPage.Perks + nameWithType: RunesPage.Perks +- uid: OSL_Server.Pages.Runes.RunesPage.Perks.perkIds + name: perkIds + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html#OSL_Server_Pages_Runes_RunesPage_Perks_perkIds + commentId: P:OSL_Server.Pages.Runes.RunesPage.Perks.perkIds + fullName: OSL_Server.Pages.Runes.RunesPage.Perks.perkIds + nameWithType: RunesPage.Perks.perkIds +- uid: OSL_Server.Pages.Runes.RunesPage.Perks.perkIds* + name: perkIds + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html#OSL_Server_Pages_Runes_RunesPage_Perks_perkIds_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Perks.perkIds + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Perks.perkIds + nameWithType: RunesPage.Perks.perkIds +- uid: OSL_Server.Pages.Runes.RunesPage.Perks.perkStyle + name: perkStyle + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html#OSL_Server_Pages_Runes_RunesPage_Perks_perkStyle + commentId: P:OSL_Server.Pages.Runes.RunesPage.Perks.perkStyle + fullName: OSL_Server.Pages.Runes.RunesPage.Perks.perkStyle + nameWithType: RunesPage.Perks.perkStyle +- uid: OSL_Server.Pages.Runes.RunesPage.Perks.perkStyle* + name: perkStyle + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html#OSL_Server_Pages_Runes_RunesPage_Perks_perkStyle_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Perks.perkStyle + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Perks.perkStyle + nameWithType: RunesPage.Perks.perkStyle +- uid: OSL_Server.Pages.Runes.RunesPage.Perks.perkSubStyle + name: perkSubStyle + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html#OSL_Server_Pages_Runes_RunesPage_Perks_perkSubStyle + commentId: P:OSL_Server.Pages.Runes.RunesPage.Perks.perkSubStyle + fullName: OSL_Server.Pages.Runes.RunesPage.Perks.perkSubStyle + nameWithType: RunesPage.Perks.perkSubStyle +- uid: OSL_Server.Pages.Runes.RunesPage.Perks.perkSubStyle* + name: perkSubStyle + href: apiserver/OSL_Server.Pages.Runes.RunesPage.Perks.html#OSL_Server_Pages_Runes_RunesPage_Perks_perkSubStyle_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.Perks.perkSubStyle + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.Perks.perkSubStyle + nameWithType: RunesPage.Perks.perkSubStyle +- uid: OSL_Server.Pages.Runes.RunesPage.ResetLanes + name: ResetLanes() + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_ResetLanes + commentId: M:OSL_Server.Pages.Runes.RunesPage.ResetLanes + fullName: OSL_Server.Pages.Runes.RunesPage.ResetLanes() + nameWithType: RunesPage.ResetLanes() +- uid: OSL_Server.Pages.Runes.RunesPage.ResetLanes* + name: ResetLanes + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_ResetLanes_ + commentId: Overload:OSL_Server.Pages.Runes.RunesPage.ResetLanes + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesPage.ResetLanes + nameWithType: RunesPage.ResetLanes +- uid: OSL_Server.Pages.Runes.RunesPage.summonerPerksList + name: summonerPerksList + href: apiserver/OSL_Server.Pages.Runes.RunesPage.html#OSL_Server_Pages_Runes_RunesPage_summonerPerksList + commentId: F:OSL_Server.Pages.Runes.RunesPage.summonerPerksList + fullName: OSL_Server.Pages.Runes.RunesPage.summonerPerksList + nameWithType: RunesPage.summonerPerksList +- uid: OSL_Server.Pages.Runes.RunesSuppPage + name: RunesSuppPage + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html + commentId: T:OSL_Server.Pages.Runes.RunesSuppPage + fullName: OSL_Server.Pages.Runes.RunesSuppPage + nameWithType: RunesSuppPage +- uid: OSL_Server.Pages.Runes.RunesSuppPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesSuppPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesSuppPage.formatingData + nameWithType: RunesSuppPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData + name: RunesSuppPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData + nameWithType: RunesSuppPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BackgroudGradient + nameWithType: RunesSuppPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BackgroudGradient + nameWithType: RunesSuppPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BakgroundPicture + nameWithType: RunesSuppPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BakgroundPicture + nameWithType: RunesSuppPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesSuppPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesSuppPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesSuppPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesSuppPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesSuppPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesSuppPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultPatch + nameWithType: RunesSuppPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultPatch + nameWithType: RunesSuppPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultRegion + nameWithType: RunesSuppPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.DefaultRegion + nameWithType: RunesSuppPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.LanePicture + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_LanePicture + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.LanePicture + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.LanePicture + nameWithType: RunesSuppPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.LanePicture* + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_LanePicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.LanePicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.LanePicture + nameWithType: RunesSuppPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesSuppPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesSuppPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesSuppPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesSuppPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesSuppPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesSuppPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesSuppPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.html#OSL_Server_Pages_Runes_RunesSuppPage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesSuppPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesSuppPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesSuppPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesSuppPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesSuppPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesSuppPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.GetChampionPicturePath + nameWithType: RunesSuppPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesSuppPage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesSuppPage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesSuppPage.GetPerksIconPath(System.Int32) + nameWithType: RunesSuppPage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesSuppPage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.GetPerksIconPath + nameWithType: RunesSuppPage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesSuppPage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesSuppPage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesSuppPage.ResetColor() + nameWithType: RunesSuppPage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesSuppPage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesSuppPage.html#OSL_Server_Pages_Runes_RunesSuppPage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesSuppPage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesSuppPage.ResetColor + nameWithType: RunesSuppPage.ResetColor +- uid: OSL_Server.Pages.Runes.RunesTopPage + name: RunesTopPage + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html + commentId: T:OSL_Server.Pages.Runes.RunesTopPage + fullName: OSL_Server.Pages.Runes.RunesTopPage + nameWithType: RunesTopPage +- uid: OSL_Server.Pages.Runes.RunesTopPage.formatingData + name: formatingData + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_formatingData + commentId: F:OSL_Server.Pages.Runes.RunesTopPage.formatingData + fullName: OSL_Server.Pages.Runes.RunesTopPage.formatingData + nameWithType: RunesTopPage.formatingData +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData + name: RunesTopPage.FormatingData + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html + commentId: T:OSL_Server.Pages.Runes.RunesTopPage.FormatingData + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData + nameWithType: RunesTopPage.FormatingData +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BackgroudGradient + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BackgroudGradient + nameWithType: RunesTopPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BackgroudGradient* + name: BackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BackgroudGradient + nameWithType: RunesTopPage.FormatingData.BackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BakgroundPicture + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BakgroundPicture + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BakgroundPicture + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BakgroundPicture + nameWithType: RunesTopPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BakgroundPicture* + name: BakgroundPicture + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BakgroundPicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BakgroundPicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BakgroundPicture + nameWithType: RunesTopPage.FormatingData.BakgroundPicture +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorBorderChampion + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BlueSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesTopPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorBorderChampion* + name: BlueSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BlueSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorBorderChampion + nameWithType: RunesTopPage.FormatingData.BlueSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorSeparationBar + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BlueSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesTopPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorSeparationBar* + name: BlueSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BlueSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorSeparationBar + nameWithType: RunesTopPage.FormatingData.BlueSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorTextSummoner + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BlueSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesTopPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorTextSummoner* + name: BlueSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_BlueSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.BlueSideColorTextSummoner + nameWithType: RunesTopPage.FormatingData.BlueSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultPatch + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_DefaultPatch + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultPatch + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultPatch + nameWithType: RunesTopPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultPatch* + name: DefaultPatch + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_DefaultPatch_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultPatch + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultPatch + nameWithType: RunesTopPage.FormatingData.DefaultPatch +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultRegion + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_DefaultRegion + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultRegion + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultRegion + nameWithType: RunesTopPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultRegion* + name: DefaultRegion + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_DefaultRegion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultRegion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.DefaultRegion + nameWithType: RunesTopPage.FormatingData.DefaultRegion +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.LanePicture + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_LanePicture + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.LanePicture + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.LanePicture + nameWithType: RunesTopPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.LanePicture* + name: LanePicture + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_LanePicture_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.LanePicture + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.LanePicture + nameWithType: RunesTopPage.FormatingData.LanePicture +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.OverlayColorBackgroudGradient + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_OverlayColorBackgroudGradient + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.OverlayColorBackgroudGradient + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesTopPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.OverlayColorBackgroudGradient* + name: OverlayColorBackgroudGradient + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_OverlayColorBackgroudGradient_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.OverlayColorBackgroudGradient + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.OverlayColorBackgroudGradient + nameWithType: RunesTopPage.FormatingData.OverlayColorBackgroudGradient +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorBorderChampion + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_RedSideColorBorderChampion + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorBorderChampion + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesTopPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorBorderChampion* + name: RedSideColorBorderChampion + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_RedSideColorBorderChampion_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorBorderChampion + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorBorderChampion + nameWithType: RunesTopPage.FormatingData.RedSideColorBorderChampion +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorSeparationBar + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_RedSideColorSeparationBar + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorSeparationBar + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesTopPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorSeparationBar* + name: RedSideColorSeparationBar + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_RedSideColorSeparationBar_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorSeparationBar + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorSeparationBar + nameWithType: RunesTopPage.FormatingData.RedSideColorSeparationBar +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorTextSummoner + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_RedSideColorTextSummoner + commentId: P:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorTextSummoner + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesTopPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorTextSummoner* + name: RedSideColorTextSummoner + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.FormatingData.html#OSL_Server_Pages_Runes_RunesTopPage_FormatingData_RedSideColorTextSummoner_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorTextSummoner + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.FormatingData.RedSideColorTextSummoner + nameWithType: RunesTopPage.FormatingData.RedSideColorTextSummoner +- uid: OSL_Server.Pages.Runes.RunesTopPage.GetChampionPicturePath(System.Int32) + name: GetChampionPicturePath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_GetChampionPicturePath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesTopPage.GetChampionPicturePath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesTopPage.GetChampionPicturePath(System.Int32) + nameWithType: RunesTopPage.GetChampionPicturePath(Int32) +- uid: OSL_Server.Pages.Runes.RunesTopPage.GetChampionPicturePath* + name: GetChampionPicturePath + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_GetChampionPicturePath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.GetChampionPicturePath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.GetChampionPicturePath + nameWithType: RunesTopPage.GetChampionPicturePath +- uid: OSL_Server.Pages.Runes.RunesTopPage.GetPerksIconPath(System.Int32) + name: GetPerksIconPath(Int32) + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_GetPerksIconPath_System_Int32_ + commentId: M:OSL_Server.Pages.Runes.RunesTopPage.GetPerksIconPath(System.Int32) + fullName: OSL_Server.Pages.Runes.RunesTopPage.GetPerksIconPath(System.Int32) + nameWithType: RunesTopPage.GetPerksIconPath(Int32) +- uid: OSL_Server.Pages.Runes.RunesTopPage.GetPerksIconPath* + name: GetPerksIconPath + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_GetPerksIconPath_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.GetPerksIconPath + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.GetPerksIconPath + nameWithType: RunesTopPage.GetPerksIconPath +- uid: OSL_Server.Pages.Runes.RunesTopPage.ResetColor + name: ResetColor() + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_ResetColor + commentId: M:OSL_Server.Pages.Runes.RunesTopPage.ResetColor + fullName: OSL_Server.Pages.Runes.RunesTopPage.ResetColor() + nameWithType: RunesTopPage.ResetColor() +- uid: OSL_Server.Pages.Runes.RunesTopPage.ResetColor* + name: ResetColor + href: apiserver/OSL_Server.Pages.Runes.RunesTopPage.html#OSL_Server_Pages_Runes_RunesTopPage_ResetColor_ + commentId: Overload:OSL_Server.Pages.Runes.RunesTopPage.ResetColor + isSpec: "True" + fullName: OSL_Server.Pages.Runes.RunesTopPage.ResetColor + nameWithType: RunesTopPage.ResetColor - uid: OSL_Server.Pages.WaitingGamePage name: WaitingGamePage href: apiserver/OSL_Server.Pages.WaitingGamePage.html commentId: T:OSL_Server.Pages.WaitingGamePage fullName: OSL_Server.Pages.WaitingGamePage nameWithType: WaitingGamePage -- uid: OSL_Server.Pages.WaitingGameStartPage +- uid: OSL_Server.Pages.WaitingGameStart + name: OSL_Server.Pages.WaitingGameStart + href: apiserver/OSL_Server.Pages.WaitingGameStart.html + commentId: N:OSL_Server.Pages.WaitingGameStart + fullName: OSL_Server.Pages.WaitingGameStart + nameWithType: OSL_Server.Pages.WaitingGameStart +- uid: OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage name: WaitingGameStartPage - href: apiserver/OSL_Server.Pages.WaitingGameStartPage.html - commentId: T:OSL_Server.Pages.WaitingGameStartPage - fullName: OSL_Server.Pages.WaitingGameStartPage + href: apiserver/OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage.html + commentId: T:OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage + fullName: OSL_Server.Pages.WaitingGameStart.WaitingGameStartPage nameWithType: WaitingGameStartPage -- uid: OSL_Server.PagesManager - name: OSL_Server.PagesManager - href: apiserver/OSL_Server.PagesManager.html - commentId: N:OSL_Server.PagesManager - fullName: OSL_Server.PagesManager - nameWithType: OSL_Server.PagesManager -- uid: OSL_Server.PagesManager.Pages - name: Pages - href: apiserver/OSL_Server.PagesManager.Pages.html - commentId: T:OSL_Server.PagesManager.Pages - fullName: OSL_Server.PagesManager.Pages - nameWithType: Pages -- uid: OSL_Server.PagesManager.Pages.Create - name: Create() - href: apiserver/OSL_Server.PagesManager.Pages.html#OSL_Server_PagesManager_Pages_Create - commentId: M:OSL_Server.PagesManager.Pages.Create - fullName: OSL_Server.PagesManager.Pages.Create() - nameWithType: Pages.Create() -- uid: OSL_Server.PagesManager.Pages.Create* - name: Create - href: apiserver/OSL_Server.PagesManager.Pages.html#OSL_Server_PagesManager_Pages_Create_ - commentId: Overload:OSL_Server.PagesManager.Pages.Create - isSpec: "True" - fullName: OSL_Server.PagesManager.Pages.Create - nameWithType: Pages.Create -- uid: OSL_Server.PagesManager.Pages.Delete - name: Delete() - href: apiserver/OSL_Server.PagesManager.Pages.html#OSL_Server_PagesManager_Pages_Delete - commentId: M:OSL_Server.PagesManager.Pages.Delete - fullName: OSL_Server.PagesManager.Pages.Delete() - nameWithType: Pages.Delete() -- uid: OSL_Server.PagesManager.Pages.Delete* - name: Delete - href: apiserver/OSL_Server.PagesManager.Pages.html#OSL_Server_PagesManager_Pages_Delete_ - commentId: Overload:OSL_Server.PagesManager.Pages.Delete - isSpec: "True" - fullName: OSL_Server.PagesManager.Pages.Delete - nameWithType: Pages.Delete -- uid: OSL_Server.PagesManager.Pages.Update - name: Update() - href: apiserver/OSL_Server.PagesManager.Pages.html#OSL_Server_PagesManager_Pages_Update - commentId: M:OSL_Server.PagesManager.Pages.Update - fullName: OSL_Server.PagesManager.Pages.Update() - nameWithType: Pages.Update() -- uid: OSL_Server.PagesManager.Pages.Update* - name: Update - href: apiserver/OSL_Server.PagesManager.Pages.html#OSL_Server_PagesManager_Pages_Update_ - commentId: Overload:OSL_Server.PagesManager.Pages.Update - isSpec: "True" - fullName: OSL_Server.PagesManager.Pages.Update - nameWithType: Pages.Update