public async Task UnmuteAsync(ICUser user) { throw new NotSupportedException(); }
public async Task FollowAsync(ICUser user) { throw new NotSupportedException(); }
public async Task BlockAsync(ICUser user) { throw new NotSupportedException(); }
public async Task <IPost> SendDirectMessageAsync(ICUser user, string text) { var ch = await(user as DCUser).Native.GetOrCreateDMChannelAsync(); return(new DCPost(await ch.SendMessageAsync(text))); }