SharpUV.UvArgs.Throw C# (CSharp) Method

Throw() public method

public Throw ( ) : void
return void
        public void Throw()
        {
            if (_exception != null)
                throw _exception;
        }

Usage Example

Esempio n. 1
0
 protected override void OnClose(UvArgs args)
 {
     args.Throw();
 }
All Usage Examples Of SharpUV.UvArgs::Throw