Hi,
I just tried for to get the groups/category and value is empty.
I used the following code.
foreach(GroupMembership membership in contact.GroupMembership)
{
if ( !String.IsNullOrEmpty(category) && !
String.IsNullOrEmpty(membership.Value))
category += ",";
category += membership.Value;
}
Is it right way to get the groups/category for a contact?
I set the ProtocolMajor = 2;
Raj
> There isn't a separate download but you can force version 2.0 by setting it
> in the Service:
>
> Service s = new Service("appname");
> s.ProtocolMajor = 2;
> s.ProtocolMinor = 0;
>
> Then just select the groups as normal and you should see the system groups.
> REMEMBER this is NOT supported so you should only use this in development
> until it's supported.
>
> I am not sure what the max limit on NumberToRetrieve is but I use 1000 and
> it works fine. That should cover most people.
>
> ______________________
www.jessemandel.com