Chaos.Portal.Core.Data.PortalRepository.ClientSettingsSet C# (CSharp) Method

ClientSettingsSet() public method

public ClientSettingsSet ( System.Guid guid, string name, string settings ) : uint
guid System.Guid
name string
settings string
return uint
        public uint ClientSettingsSet(Guid guid, string name, string settings)
        {
            var result = Gateway.ExecuteNonQuery("ClientSettings_Set", new[]
                {
                    new MySqlParameter("Guid", guid.ToByteArray()),
                    new MySqlParameter("Name", name),
                    new MySqlParameter("Settings", settings)
                });

            return (uint)result;
        }