ForumClientCore.ClientController.Subscribe C# (CSharp) Méthode

Subscribe() public méthode

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

Usage Example

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