Interface IBuildContext | Package Manager UI website
docs.unity3d.com
    Show / Hide Table of Contents

    Interface IBuildContext

    Base interface for build data container system

    Namespace: UnityEditor.Build.Pipeline.Interfaces
    Syntax
    public interface IBuildContext

    Methods

    ContainsContextObject(Type)

    Checks the build context for existence of a data that is of the specified type.

    Declaration
    bool ContainsContextObject(Type type)
    Parameters
    Type Name Description
    Type type

    Type of data to check for existence.

    Returns
    Type Description
    System.Boolean

    true if the context contains specified type of data; otherwise, false.

    ContainsContextObject<T>()

    Checks the build context for existence of a data that is of the specified type.

    Declaration
    bool ContainsContextObject<T>()where T : IContextObject
    Returns
    Type Description
    System.Boolean

    true if the context contains specified type of data; otherwise, false.

    Type Parameters
    Name Description
    T

    Type of data to check for existence.

    GetContextObject(Type)

    Gets the data of the specified type contained in the build context.

    Declaration
    IContextObject GetContextObject(Type type)
    Parameters
    Type Name Description
    Type type

    Type of data to return.

    Returns
    Type Description
    IContextObject

    The type of data specified.

    GetContextObject<T>()

    Gets the data of the specified type contained in the build context.

    Declaration
    T GetContextObject<T>()where T : IContextObject
    Returns
    Type Description
    T

    The type of data specified.

    Type Parameters
    Name Description
    T

    Type of data to return.

    SetContextObject(Type, IContextObject)

    Adds the data of the specified type to the build context.

    Declaration
    void SetContextObject(Type type, IContextObject contextObject)
    Parameters
    Type Name Description
    Type type

    Type of data to add.

    IContextObject contextObject

    Object holding the data to add.

    SetContextObject(IContextObject)

    Adds the data to the build context. Type will be inferred using Reflection.

    Declaration
    void SetContextObject(IContextObject contextObject)
    Parameters
    Type Name Description
    IContextObject contextObject

    Object holding the data to add.

    SetContextObject<T>(IContextObject)

    Adds the data of the specified type to the build context.

    Declaration
    void SetContextObject<T>(IContextObject contextObject)where T : IContextObject
    Parameters
    Type Name Description
    IContextObject contextObject

    Object holding the data to add.

    Type Parameters
    Name Description
    T

    Type of data to add.

    TryGetContextObject(Type, out IContextObject)

    Tries to get the data of the specified type contained in the build context.

    Declaration
    bool TryGetContextObject(Type type, out IContextObject contextObject)
    Parameters
    Type Name Description
    Type type

    Type of data to return.

    IContextObject contextObject

    The object holding the data to be returned if found.

    Returns
    Type Description
    System.Boolean

    true if the context was able to returned the specified data; otherwise, false.

    TryGetContextObject<T>(out T)

    Tries to get the data of the specified type contained in the build context.

    Declaration
    bool TryGetContextObject<T>(out T contextObject)where T : IContextObject
    Parameters
    Type Name Description
    T contextObject

    The object holding the data to be returned if found.

    Returns
    Type Description
    System.Boolean

    true if the context was able to returned the specified data; otherwise, false.

    Type Parameters
    Name Description
    T

    Type of data to return.

    In This Article
    • Methods
      • ContainsContextObject(Type)
      • ContainsContextObject<T>()
      • GetContextObject(Type)
      • GetContextObject<T>()
      • SetContextObject(Type, IContextObject)
      • SetContextObject(IContextObject)
      • SetContextObject<T>(IContextObject)
      • TryGetContextObject(Type, out IContextObject)
      • TryGetContextObject<T>(out T)
    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023