Gets or sets the absolute date and time after which the conference can be deleted.

Namespace:  Microsoft.Rtc.Collaboration.ConferenceManagement
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Property 
ExpiryTime 
As 
Nullable(
Of 
DateTime)
C#
public 
Nullable<
DateTime> 
ExpiryTime { 
get; 
set; }
Visual C++
public:
property 
Nullable<
DateTime> 
ExpiryTime {
	
Nullable<
DateTime> 
get ();
	
void 
set (
Nullable<
DateTime> 
value);
}
JavaScript
function get_
expiryTime();
function set_
expiryTime(
value);

Remarks

The day and time must be between one year before, and 10 years after, the current date and time on the server.

If no value is supplied, expiry time is set to 8 hours.

Exceptions

Exception Condition
ArgumentOutOfRangeException Thrown if the supplied date is not within acceptable limits.

See Also