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

UserSettingsSet() public method

public UserSettingsSet ( System.Guid guid, System.Guid userGuid, string settings ) : uint
guid System.Guid
userGuid System.Guid
settings string
return uint
        public uint UserSettingsSet(Guid guid, Guid userGuid, string settings)
        {
            var result = Gateway.ExecuteNonQuery("UserSettings_Set", new[]
                {
                    new MySqlParameter("ClientSettingsGuid", guid.ToByteArray()),
                    new MySqlParameter("UserGuid", userGuid.ToByteArray()),
                    new MySqlParameter("Settings", settings)
                });

            return (uint)result;
        }