Find method
Implementation
GroupMember? Find(String key) {
EwsUtilities.ValidateParam(key, "key");
for (GroupMember item in this.Items) {
if (item.Key == key) {
return item;
}
}
return null;
}
GroupMember? Find(String key) {
EwsUtilities.ValidateParam(key, "key");
for (GroupMember item in this.Items) {
if (item.Key == key) {
return item;
}
}
return null;
}