Stumps.StumpsServer.FindStump C# (CSharp) Method

FindStump() public method

Finds an existing stump.
A null value is returned if a Stump is not found.
public FindStump ( string stumpId ) : Stump
stumpId string The unique identifier for the Stump.
return Stump
        public Stump FindStump(string stumpId)
        {
            return _stumpsManager.FindStump(stumpId);
        }