MessageHelperListMessages Method |
Lists the messages.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static SearchResult<Message> ListMessages(
int firstRow,
int pageSize,
string order,
string propertyNameToOrder,
Dictionary<string, SearchRestriction> disjunctions,
Dictionary<string, SearchRestriction> conjunctions,
Guid languageId
)
Public Shared Function ListMessages (
firstRow As Integer,
pageSize As Integer,
order As String,
propertyNameToOrder As String,
disjunctions As Dictionary(Of String, SearchRestriction),
conjunctions As Dictionary(Of String, SearchRestriction),
languageId As Guid
) As SearchResult(Of Message)
public:
static SearchResult<Message^>^ ListMessages(
int firstRow,
int pageSize,
String^ order,
String^ propertyNameToOrder,
Dictionary<String^, SearchRestriction^>^ disjunctions,
Dictionary<String^, SearchRestriction^>^ conjunctions,
Guid languageId
)
static member ListMessages :
firstRow : int *
pageSize : int *
order : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchRestriction> *
conjunctions : Dictionary<string, SearchRestriction> *
languageId : Guid -> SearchResult<Message>
Parameters
- firstRow
- Type: SystemInt32
The first row. - pageSize
- Type: SystemInt32
Size of the page. - order
- Type: SystemString
The order. - propertyNameToOrder
- Type: SystemString
The property name to order. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The disjunctions. - conjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The conjunctions. - languageId
- Type: SystemGuid
The language identifier.
Return Value
Type:
SearchResultMessage
List of messages.
See Also