Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetUnifiedGroupUnseenCountRequest"/> class.
 /// </summary>
 /// <param name="service">The service.</param>
 /// <param name="lastVisitedTimeUtc">The last visited time utc for the group</param>
 /// <param name="identityType">The identity type for the group</param>
 /// <param name="value">The value associated with the identify type for the group</param>
 internal GetUnifiedGroupUnseenCountRequest(
     ExchangeService service,
     DateTime lastVisitedTimeUtc,
     UnifiedGroupIdentityType identityType,
     string value) : base(service)
 {
     this.lastVisitedTimeUtc = lastVisitedTimeUtc;
     this.identityType       = identityType;
     this.identityValue      = value;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SetUnifiedGroupLastVisitedTimeRequest"/> class.
 /// </summary>
 /// <param name="service">The service.</param>
 /// <param name="lastVisitedTimeUtc">The last visited time utc for the group</param>
 /// <param name="identityType">The identity type for the group</param>
 /// <param name="value">The value associated with the identify type for the group</param>
 internal SetUnifiedGroupLastVisitedTimeRequest(
     ExchangeService service,
     DateTime lastVisitedTimeUtc,
     UnifiedGroupIdentityType identityType,
     string value) : base(service)
 {
     this.lastVisitedTimeUtc = lastVisitedTimeUtc;
     this.identityType = identityType;
     this.identityValue = value;
 }
Пример #3
0
     String value) : super(service)
 {
     this.lastVisitedTimeUtc = lastVisitedTimeUtc;
     this.identityType       = identityType;
     this.identityValue      = value;
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetUnifiedGroupUnseenCountRequest"/> class.
 /// </summary>
 /// <param name="service">The service.</param>
 /// <param name="lastVisitedTimeUtc">The last visited time utc for the group</param>
 /// <param name="identityType">The identity type for the group</param>
 /// <param name="value">The value associated with the identify type for the group</param>
 GetUnifiedGroupUnseenCountRequest(
     ExchangeService service,
     DateTime lastVisitedTimeUtc,
     UnifiedGroupIdentityType identityType,
     String value) : super(service)
Пример #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UnifiedGroupIdentity"/>  class
 /// </summary>
 /// <param name="identityType">The identity type</param>
 /// <param name="value">The value assocaited with the identity type</param>
 UnifiedGroupIdentity(UnifiedGroupIdentityType identityType, String value)
 {
     this.IdentityType = identityType;
     this.Value        = value;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UnifiedGroupIdentity"/>  class
 /// </summary>
 /// <param name="identityType">The identity type</param>
 /// <param name="value">The value assocaited with the identity type</param>
 public UnifiedGroupIdentity(UnifiedGroupIdentityType identityType, string value)
 {
     this.IdentityType = identityType;
     this.Value = value;
 }