EnableScpLookup property
bool
get
EnableScpLookup
Implementation
//new TimeZoneInfo TimeZone
// {
// get { return base.TimeZone; }
// }
/// <summary>
/// Provides access to the Unified Messaging functionalities.
/// </summary>
//UnifiedMessaging UnifiedMessaging
// {
// get
// {
// if (this.unifiedMessaging == null)
// {
// this.unifiedMessaging = new UnifiedMessaging(this);
// }
//
// return this.unifiedMessaging;
// }
// }
/// <summary>
/// Gets or sets a value indicating whether the AutodiscoverUrl method should perform SCP (Service Connection Point) record lookup when determining
/// the Autodiscover service URL.
/// </summary>
bool get EnableScpLookup => this._enableScpLookup;
set
EnableScpLookup
(bool value)
Implementation
set EnableScpLookup(bool value) => this._enableScpLookup = value;