Class GetContentArgs
Support class to make a content request with IUgcService.GetContentAsync Contains all the parameters of the request
Inherited Members
Namespace: Unity.Services.Ugc.Bridge
Assembly: Unity.Services.Ugc.Bridge.Editor.dll
Syntax
public class GetContentArgs
Constructors
GetContentArgs(string)
Construct a new GetContentArgs object.
Declaration
public GetContentArgs(string contentId)
Parameters
Type | Name | Description |
---|---|---|
string | contentId | The content identifier of the content to update |
Properties
ContentId
The content identifier of the content to update
Declaration
public string ContentId { get; set; }
Property Value
Type | Description |
---|---|
string |
DownloadContent
True if the content should be downloaded after Content is fetched. Default is false.
Declaration
public bool DownloadContent { get; set; }
Property Value
Type | Description |
---|---|
bool |
DownloadThumbnail
True if the thumbnail should be downloaded after Content is fetched. Default is false.
Declaration
public bool DownloadThumbnail { get; set; }
Property Value
Type | Description |
---|---|
bool |
IncludeStatistics
True if the content should include the statistics
Declaration
public bool IncludeStatistics { get; set; }
Property Value
Type | Description |
---|---|
bool |