Conference.ConnectionTime Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the connection start time of the Conference
, if specified. -or- Sets the connection start time of the Conference
.
public long ConnectionTime { [Android.Runtime.Register("getConnectionTime", "()J", "", ApiSince=23)] get; [Android.Runtime.Register("setConnectionTime", "(J)V", "", ApiSince=23)] set; }
[<get: Android.Runtime.Register("getConnectionTime", "()J", "", ApiSince=23)>]
[<set: Android.Runtime.Register("setConnectionTime", "(J)V", "", ApiSince=23)>]
member this.ConnectionTime : int64 with get, set
Property Value
The time at which the Conference
was connected.
- Attributes
Remarks
Property getter documentation:
Retrieves the connection start time of the Conference
, if specified. A value of #CONNECT_TIME_NOT_SPECIFIED
indicates that Telecom should determine the start time of the conference.
Java documentation for android.telecom.Conference.getConnectionTime()
.
Property setter documentation:
Sets the connection start time of the Conference
. This is used in the call log to indicate the date and time when the conference took place.
Should be specified in wall-clock time returned by System#currentTimeMillis()
.
When setting the connection time, you should always set the connection elapsed time via #setConnectionStartElapsedRealtimeMillis(long)
to ensure the duration is reflected.
Java documentation for android.telecom.Conference.setConnectionTime(long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.