RxSpy.RxSpySession.Capture C# (CSharp) Method

Capture() public static method

public static Capture ( ) : IDisposable
return IDisposable
        public static IDisposable Capture()
        {
            Current.StartCapture();
            return Disposable.Create(() => Current.StopCapture());
        }