G
Guest
I'm trying to extend the System.IAsynchResult so I created a class as follows:
public class MyAsynchResult : System.IAsyncResult
{
.....
}
But get:
C:\Inetpub\wwwroot\MyApp\MyAsynchResult.cs(8): 'MyAsynchResult' does not
implement interface member 'System.IAsyncResult.AsyncState' as well as for
each method of IAsynchResult.
I understand I have to implement each method, but I'm not sure of the syntax?
public class MyAsynchResult : System.IAsyncResult
{
.....
}
But get:
C:\Inetpub\wwwroot\MyApp\MyAsynchResult.cs(8): 'MyAsynchResult' does not
implement interface member 'System.IAsyncResult.AsyncState' as well as for
each method of IAsynchResult.
I understand I have to implement each method, but I'm not sure of the syntax?