ChatterService.ChatterRestService.GetFollowing C# (CSharp) Method

GetFollowing() public method

public GetFollowing ( string userId ) : ChatterResponse
userId string
return ChatterResponse
        public ChatterResponse GetFollowing(string userId)
        {
            return MakeUserRestCall(userId, "following");
        }

Usage Example

 public void TestRestGetFollowing()
 {
     ChatterService.ChatterRestService service = new ChatterService.ChatterRestService(_url, _logService);
     service.Login(_client_id, _grant_type, _client_secret, _username, _password);
     service.GetFollowing("005A0000001X3Nb");
 }
All Usage Examples Of ChatterService.ChatterRestService::GetFollowing