Example #1
0
 public async Task UnmuteAsync(ICUser user)
 {
     throw new NotSupportedException();
 }
Example #2
0
 public async Task FollowAsync(ICUser user)
 {
     throw new NotSupportedException();
 }
Example #3
0
 public async Task BlockAsync(ICUser user)
 {
     throw new NotSupportedException();
 }
Example #4
0
        public async Task <IPost> SendDirectMessageAsync(ICUser user, string text)
        {
            var ch = await(user as DCUser).Native.GetOrCreateDMChannelAsync();

            return(new DCPost(await ch.SendMessageAsync(text)));
        }