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);
        }