EnableScpLookup property

bool EnableScpLookup
Gets the time zone this service is scoped to. Provides access to the Unified Messaging functionalities. Gets or sets a value indicating whether the AutodiscoverUrl method should perform SCP (Service Connection Point) record lookup when determining the Autodiscover service URL.

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;
void EnableScpLookup=(bool value)

Implementation

set EnableScpLookup(bool value) => this._enableScpLookup = value;