StoryTeller.Engine.Frame.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            _next = null;
            _exceptionText = String.Empty;
        }

Usage Example

示例#1
0
        public void Clear()
        {
            _root.Clear();
            _current = _root;

            _errorProperties.Clear();
            _failedProperties.Clear();

            _results.ClearAll();
            _actuals.ClearAll();
        }