Click or drag to resize

RemReportRepMobileMsg Method

Paperwork .Net Kütüphanesi
Mobil cihazdaki mesajlaşma raporu verilerini raporlar.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public rRepMobileMsg RepMobileMsg(
	bool onlyParams,
	DateTime beginDate,
	DateTime endDate,
	string owner,
	string mType,
	string state,
	string mResult,
	int beginRec,
	int endRec
)

Parameters

onlyParams
Type: SystemBoolean
Status üç değer alabilir. (0-Hepsi , 1-Akif , 2-Pasif)
beginDate
Type: SystemDateTime
Başlangıç Tarihi
endDate
Type: SystemDateTime
Bitiş Tarihi
owner
Type: SystemString
Kullanıcı
mType
Type: SystemString
Bitiş Tarihi
state
Type: SystemString
mResult
Type: SystemString
beginRec
Type: SystemInt32
Başlangıç (Minimum=1)
endRec
Type: SystemInt32
Bitiş (Max =1000)

Return Value

Type: rRepMobileMsg
Examples
C#
public void RepMobileMsg()
{
string owner = "argus";
string state = "1";
int beginRec = 1;
int endRec = 1000;

rRepMobileMsg res = p.rReport.RepMobileMsg(true, DateTime.Now, DateTime.Now, owner, "", state, "", beginRec, endRec);
var owners = res.Owners.ToString();
var pageCount = res.PageCount.ToString();
Console.WriteLine(owners);
    Console.WriteLine(pageCount);
}
See Also