Recurity.Swf.AVM1.ActionIf.ParseFrom C# (CSharp) Method

ParseFrom() protected method

Parses the action from a string array
protected ParseFrom ( ) : bool
return bool
        protected override bool ParseFrom( params string[] token )
        {
            if ( token.Length != 1 )
                return false;
            _offset = Int16.Parse( token[ 0 ] );
            return true;
        }