C# Class SexyProxy.Fody.Tests.HandWrittenProxy

Inheritance: IHandWritten
Show file Open project: kswoll/sexy-proxy Class Usage Examples

Public Methods

Method Description
DoSomething ( ) : void
DoSomethingAsync ( ) : System.Threading.Tasks.Task
GetString ( ) : string
GetStringAsync ( ) : Task
HandWrittenProxy ( IHandWritten target, InvocationHandler invocationHandler ) : System.Threading.Tasks
Sum ( int first, int second ) : int
SumAsync ( int first, int second ) : Task

Method Details

DoSomething() public method

public DoSomething ( ) : void
return void

DoSomethingAsync() public method

public DoSomethingAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task

GetString() public method

public GetString ( ) : string
return string

GetStringAsync() public method

public GetStringAsync ( ) : Task
return Task

HandWrittenProxy() public method

public HandWrittenProxy ( IHandWritten target, InvocationHandler invocationHandler ) : System.Threading.Tasks
target IHandWritten
invocationHandler InvocationHandler
return System.Threading.Tasks

Sum() public method

public Sum ( int first, int second ) : int
first int
second int
return int

SumAsync() public method

public SumAsync ( int first, int second ) : Task
first int
second int
return Task