예제 #1
0
 public bool Equals(PropValue other)
 {
     return(this.propDef.Equals(other.propDef) && Util.ValueEquals(this.value, other.value));
 }
		public static ContactInfoForLinkingFromDirectory Create(ADRawEntry person)
		{
			Util.ThrowOnNullArgument(person, "person");
			return new ContactInfoForLinkingFromDirectory(person);
		}
예제 #3
0
		public static byte[] MakeAddressBookEntryID(IExchangePrincipal exchangePrincipal)
		{
			Util.ThrowOnNullArgument(exchangePrincipal, "exchangePrincipal");
			return AddressBookEntryId.MakeAddressBookEntryID(exchangePrincipal.LegacyDn, false);
		}