Skip to content

Instantly share code, notes, and snippets.

@tomorgan
Last active August 29, 2015 14:04
Show Gist options
  • Save tomorgan/d31f267114332d6fa624 to your computer and use it in GitHub Desktop.
Save tomorgan/d31f267114332d6fa624 to your computer and use it in GitHub Desktop.
Example: Async Task extension method
public static Task SendMessageAsync(this InstantMessagingFlow flow, IMessage message)
{
return Task.Factory.FromAsync(flow.BeginSendMessage,
flow.EndSendMessage, message, null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment