OpenSim.Framework.AgentGroupData.UnpackUpdateMessage C# (CSharp) Method

UnpackUpdateMessage() public method

public UnpackUpdateMessage ( OSDMap args ) : void
args OSDMap
return void
        public void UnpackUpdateMessage(OSDMap args)
        {
            if (args["group_id"] != null)
                GroupID = args["group_id"].AsUUID();
            if (args["group_powers"] != null)
                UInt64.TryParse((string)args["group_powers"].AsString(), out GroupPowers);
            if (args["accept_notices"] != null)
                AcceptNotices = args["accept_notices"].AsBoolean();
        }
    }