Profiler Object:Object Information: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
[[Profiler Object:Reference|← Profiler Object Reference]] | [[Profiler Object:Reference|← Profiler Object Reference]] | ||
{ | {{ProfilerObjectNav}} | ||
{ | |||
Line 89: | Line 12: | ||
{{ Object Syntax | {{ Object Syntax | ||
|Syntax=profiler->GetBuildNumber(); | |Syntax=profiler->GetBuildNumber(); | ||
|C= | |C=const char* = mdProfilerGetBuildNumber(profiler); | ||
|.Net=string = profiler.GetBuildNumber(); | |.Net=string = profiler.GetBuildNumber(); | ||
}} | }} | ||
==GetDatabaseDate== | ==GetDatabaseDate== | ||
This function returns the date of your | This function returns the date of your Profiler data files. | ||
{{ Object Syntax | {{ Object Syntax | ||
|Syntax=profiler->GetDatabaseDate(); | |Syntax=profiler->GetDatabaseDate(); | ||
|C= | |C=const char* = mdProfilerGetDatabaseDate(profiler); | ||
|.Net=string = profiler.GetDatabaseDate(); | |.Net=string = profiler.GetDatabaseDate(); | ||
}} | }} | ||
==GetLicenseExpirationDate== | ==GetLicenseExpirationDate== | ||
This function returns the date when the current | This function returns the date when the current License Key expires. License Key issued by Melissa Data are valid a certain period of time. A License Key with an expired expiration date is no longer valid. | ||
{{ Object Syntax | {{ Object Syntax | ||
|Syntax=profiler->GetLicenseExpirationDate(); | |Syntax=profiler->GetLicenseExpirationDate(); | ||
|C= | |C=const char* = mdProfilerGetLicenseExpirationDate(profiler); | ||
|.Net=string = profiler.GetLicenseExpirationDate(); | |.Net=string = profiler.GetLicenseExpirationDate(); | ||
}} | |||
==GetProfileStartDateTime== | |||
This function returns the profiling start date and time. | |||
{{ Object Syntax | |||
|Syntax=profiler->GetProfileStartDateTime(); | |||
|C=const char* = mdProfilerGetProfileStartDateTime(profiler); | |||
|.Net=string = profiler.GetProfileStartDateTime(); | |||
}} | |||
==GetProfileEndDateTime== | |||
This function returns the profiling end date and time. | |||
{{ Object Syntax | |||
|Syntax=profiler->GetProfileEndDateTime(); | |||
|C=const char* = mdProfilerGetProfileEndDateTime(profiler); | |||
|.Net=string = profiler.GetProfileEndDateTime(); | |||
}} | }} | ||
[[Category:Profiler Object]] | [[Category:Profiler Object]] |
Latest revision as of 21:19, 19 December 2016
GetBuildNumber
This function returns a string value containing the current development release build number of the Profiler Object. This is usually a four-character string. If you are running the Demo version of Profiler Object, the word DEMO will be appended to the build number.
Syntax | profiler->GetBuildNumber(); |
---|---|
C | const char* = mdProfilerGetBuildNumber(profiler); |
.Net | string = profiler.GetBuildNumber(); |
GetDatabaseDate
This function returns the date of your Profiler data files.
Syntax | profiler->GetDatabaseDate(); |
---|---|
C | const char* = mdProfilerGetDatabaseDate(profiler); |
.Net | string = profiler.GetDatabaseDate(); |
GetLicenseExpirationDate
This function returns the date when the current License Key expires. License Key issued by Melissa Data are valid a certain period of time. A License Key with an expired expiration date is no longer valid.
Syntax | profiler->GetLicenseExpirationDate(); |
---|---|
C | const char* = mdProfilerGetLicenseExpirationDate(profiler); |
.Net | string = profiler.GetLicenseExpirationDate(); |
GetProfileStartDateTime
This function returns the profiling start date and time.
Syntax | profiler->GetProfileStartDateTime(); |
---|---|
C | const char* = mdProfilerGetProfileStartDateTime(profiler); |
.Net | string = profiler.GetProfileStartDateTime(); |
GetProfileEndDateTime
This function returns the profiling end date and time.
Syntax | profiler->GetProfileEndDateTime(); |
---|---|
C | const char* = mdProfilerGetProfileEndDateTime(profiler); |
.Net | string = profiler.GetProfileEndDateTime(); |