Returns the forwarding info for the specified user.
A UserForwardingInfoResult instance containing the results of the GetUserForwardingInfo action.
using System;
using svcUserAdmin;
class svcUserAdminUserForwardingInfo
{
static void Main()
{
svcUserAdmin admin = new svcUserAdmin();
UserForwardingInfoResult status = admin.GetUserForwardingInfo("admin@domain.net",
"alskdjfhtt",
"dlindt@domain.net");
if(status.Result)
{
Console.WriteLine ("Forwarding address: {0}", status.ForwardingAddress);
}else{
Console.WriteLine (status.Message);
}
}
svcUserAdmin Class | svcUserAdmin Namespace