Class ContentCatalogDataEntry | Package Manager UI website
docs.unity.cn
    Show / Hide Table of Contents

    Class ContentCatalogDataEntry

    Contains serializable data for an IResourceLocation

    Inheritance
    System.Object
    ContentCatalogDataEntry
    Namespace: UnityEngine.AddressableAssets.ResourceLocators
    Syntax
    public class ContentCatalogDataEntry

    Constructors

    ContentCatalogDataEntry(String, String, IEnumerable<Object>, IEnumerable<Object>, Object)

    Construct a new ContentCatalogEntry.

    Declaration
    public ContentCatalogDataEntry(string internalId, string provider, IEnumerable<object> keys, IEnumerable<object> dependencies = null, object extraData = null)
    Parameters
    Type Name Description
    System.String internalId

    The internal id.

    System.String provider

    The provider id.

    System.Collections.Generic.IEnumerable<System.Object> keys

    The collection of keys that can be used to retrieve this entry.

    System.Collections.Generic.IEnumerable<System.Object> dependencies

    Optional collection of keys for dependencies.

    System.Object extraData

    Optional additional data to be passed to the provider. For example, AssetBundleProviders use this for cache and crc data.

    Properties

    Data

    Serializable data for the provider.

    Declaration
    public object Data { get; set; }
    Property Value
    Type Description
    System.Object

    Dependencies

    Dependency keys.

    Declaration
    public List<object> Dependencies { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Object>

    InternalId

    Internl id.

    Declaration
    public string InternalId { get; set; }
    Property Value
    Type Description
    System.String

    Keys

    Keys for this location.

    Declaration
    public List<object> Keys { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Object>

    Provider

    IResourceProvider identifier.

    Declaration
    public string Provider { get; }
    Property Value
    Type Description
    System.String
    Back to top Copyright © 2015-2018 Unity
    Generated by DocFX