OpenMetaverse.ObjectManager.SetDescription C# (CSharp) Method

SetDescription() public method

Set the description of an object
public SetDescription ( Simulator simulator, uint localID, string description ) : void
simulator Simulator A reference to the object where the object resides
localID uint The objects ID which is local to the simulator the object is in
description string A string containing the new description of the object
return void
        public void SetDescription(Simulator simulator, uint localID, string description)
        {
            SetDescriptions(simulator, new uint[] { localID }, new string[] { description });
        }