ForumClientCore.ClientController.Subscribe C# (CSharp) Method

Subscribe() public method

public Subscribe ( string username ) : Post
username string
return ForumShared.SharedDataTypes.Post
        public Post Subscribe(string username)
        {
            return netAdaptor.Subscribe(username);
        }

Usage Example

Example #1
0
 private void subscriberThread_DoWork(object sender, DoWorkEventArgs e)
 {
     ClientController controller = new ClientController();
     e.Result = controller.Subscribe(currentUser);
 }