Table of Contents

Class PhoneCall

Namespace
Ranorex.Core.Remoting.Data
Assembly
Ranorex.Core.dll

Data object for phone calls.

public class PhoneCall
Inheritance
PhoneCall
Inherited Members

Constructors

PhoneCall()

public PhoneCall()

Properties

CallDuration

Duration of the call.

public TimeSpan CallDuration { get; }

Property Value

TimeSpan

CallType

Type of call. Could be "incoming", "outgoing" or "missed"

public string CallType { get; set; }

Property Value

string

Date

DateTime the call occurred.

public DateTime Date { get; set; }

Property Value

DateTime

DurationMs

Duration of the call in milliseconds.

protected int DurationMs { get; set; }

Property Value

int

Id

Identifier for the call.

public string Id { get; set; }

Property Value

string

Number

Phone number associated with the call

public string Number { get; set; }

Property Value

string

Methods

ToString()

String representation of the call. Format: {DATE} (Duration: {CallDuration}) {Number} {CallType}

public override string ToString()

Returns

string

String representation of the call.