Class NSWebAppUsage
Syntax
Constructors
NSWebAppUsage()
Initializes a new instance of the NSWebAppUsage class.
Introduced or updated in version: 7.5
Declaration
NSWebAppUsage
Methods
GetAggregateBin()
Introduced or updated in version: 7.5
Declaration
Integer GetAggregateBin()
Returns
Type | Description |
---|---|
Integer |
Examples
NSWebAppUsage thing;
Integer aggregateBin = thing.GetAggregateBin();
GetAggregateCount()
Introduced or updated in version: 7.5
Declaration
Integer GetAggregateCount()
Returns
Type | Description |
---|---|
Integer | Number of times the specific soprotocol is accessed. |
Examples
NSWebAppUsage thing;
Integer aggregateCount = thing.GetAggregateCount();
GetAssocId()
Introduced or updated in version: 7.5
Declaration
Integer GetAssocId()
Returns
Type | Description |
---|---|
Integer | Associate Id. |
Examples
NSWebAppUsage thing;
Integer assocId = thing.GetAssocId();
GetTimestamp()
Introduced or updated in version: 7.5
Declaration
DateTime GetTimestamp()
Returns
Type | Description |
---|---|
DateTime | Which day the usage was logged. |
Examples
NSWebAppUsage thing;
DateTime timestamp = thing.GetTimestamp();
GetVersion()
Introduced or updated in version: 7.5
Declaration
Integer GetVersion()
Returns
Type | Description |
---|---|
Integer |
Examples
NSWebAppUsage thing;
Integer version = thing.GetVersion();
GetViewState()
Introduced or updated in version: 7.5
Declaration
String GetViewState()
Returns
Type | Description |
---|---|
String | The SoProtocol(ViewState). |
Examples
NSWebAppUsage thing;
String viewState = thing.GetViewState();
GetWebAppUsageId()
Introduced or updated in version: 7.5
Declaration
Integer GetWebAppUsageId()
Returns
Type | Description |
---|---|
Integer | Primary Key. |
Examples
NSWebAppUsage thing;
Integer webAppUsageId = thing.GetWebAppUsageId();
SetAggregateBin(Integer)
Introduced or updated in version: 7.5
Declaration
Void SetAggregateBin(Integer aggregateBin)
Parameters
Type | Name | Description |
---|---|---|
Integer | aggregateBin |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
Integer aggregateBin;
thing.SetAggregateBin(aggregateBin);
SetAggregateCount(Integer)
Introduced or updated in version: 7.5
Declaration
Void SetAggregateCount(Integer aggregateCount)
Parameters
Type | Name | Description |
---|---|---|
Integer | aggregateCount | Number of times the specific soprotocol is accessed. |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
Integer aggregateCount;
thing.SetAggregateCount(aggregateCount);
SetAssocId(Integer)
Introduced or updated in version: 7.5
Declaration
Void SetAssocId(Integer assocId)
Parameters
Type | Name | Description |
---|---|---|
Integer | assocId | Associate Id. |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
Integer assocId;
thing.SetAssocId(assocId);
SetTimestamp(DateTime)
Introduced or updated in version: 7.5
Declaration
Void SetTimestamp(DateTime timestamp)
Parameters
Type | Name | Description |
---|---|---|
DateTime | timestamp | Which day the usage was logged. |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
DateTime timestamp;
thing.SetTimestamp(timestamp);
SetVersion(Integer)
Introduced or updated in version: 7.5
Declaration
Void SetVersion(Integer version)
Parameters
Type | Name | Description |
---|---|---|
Integer | version |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
Integer version;
thing.SetVersion(version);
SetViewState(String)
Introduced or updated in version: 7.5
Declaration
Void SetViewState(String viewState)
Parameters
Type | Name | Description |
---|---|---|
String | viewState | The SoProtocol(ViewState). |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
String viewState;
thing.SetViewState(viewState);
SetWebAppUsageId(Integer)
Introduced or updated in version: 7.5
Declaration
Void SetWebAppUsageId(Integer webAppUsageId)
Parameters
Type | Name | Description |
---|---|---|
Integer | webAppUsageId | Primary Key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSWebAppUsage thing;
Integer webAppUsageId;
thing.SetWebAppUsageId(webAppUsageId);