[This is preliminary documentation and subject to change.]

Initializes a new instance with the given title and the given ArrayList of AbstractSharedMediaInfo objects.


Namespace: MediaMallTechnologies.Plugin
Assembly: Util (in Util.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal id As String,  _ 
   ByVal parentId As String,  _ 
   ByVal title As String,  _ 
   ByVal totalCount As Integer,  _ 
   ByVal items As ICollection(Of AbstractSharedMediaInfo),  _ 
   ByVal isContainer As Boolean _ 
)
C#
public Payload(
   string id,
   string parentId,
   string title,
   int totalCount,
   ICollection<AbstractSharedMediaInfo> items,
   bool isContainer
)
C++
public:
 Payload(
   String id,
   String parentId,
   String title,
   int totalCount,
   ICollection<AbstractSharedMediaInfo> items,
   bool isContainer
) sealed 
J#
public Payload(
   string id,
   string parentId,
   string title,
   int totalCount,
   ICollection<AbstractSharedMediaInfo> items,
   bool isContainer
)
JScript
public function Payload(
   id : String,
   parentId : String,
   title : String,
   totalCount : int,
   items : ICollection<AbstractSharedMediaInfo>,
   isContainer : bool
)

Parameters

id
The unique ID for this payload.
parentId
The unique ID for the owner that represents this payload.
title
The name for this payload.
totalCount
The total number of matching items for this payload. May be larger than the count of actual items in the embedded ArrayList.
items
The ICollection of items for this payload.
isContainer
true if this payload represents a container, false otherwise.

See Also