OpenSim.Region.Framework.Scenes.Scene.ChangeCircuitCode C# (CSharp) Method

ChangeCircuitCode() public method

Change the Circuit Code for the user's Circuit Data
public ChangeCircuitCode ( uint oldcc, uint newcc ) : bool
oldcc uint The old Circuit Code. Must match a previous circuit code
newcc uint The new Circuit Code. Must not be an already existing circuit code
return bool
        public bool ChangeCircuitCode(uint oldcc, uint newcc)
        {
            return m_authenticateHandler.TryChangeCiruitCode(oldcc, newcc);
        }
Scene