[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) _ 
)
C#
public Payload(
   string id,
   string parentId,
   string title,
   int totalCount,
   ICollection<AbstractSharedMediaInfo> items
)
C++
public:
 Payload(
   String id,
   String parentId,
   String title,
   int totalCount,
   ICollection<AbstractSharedMediaInfo> items
) sealed 
J#
public Payload(
   string id,
   string parentId,
   string title,
   int totalCount,
   ICollection<AbstractSharedMediaInfo> items
)
JScript
public function Payload(
   id : String,
   parentId : String,
   title : String,
   totalCount : int,
   items : ICollection<AbstractSharedMediaInfo>
)

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.

See Also