Stumps.StumpsServer.FindStump C# (CSharp) Метод

FindStump() публичный Метод

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.
Результат Stump
        public Stump FindStump(string stumpId)
        {
            return _stumpsManager.FindStump(stumpId);
        }