[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/Search.IPropertyDatabaseView.CreateRecordKey.html [Back]  [Original]

Unity - Scripting API: Search.IPropertyDatabaseView.CreateRecordKey
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    IPropertyDatabaseView.CreateRecordKey

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Declaration

    public PropertyDatabaseRecordKey CreateRecordKey(string documentId, string propertyPath);

    Parameters

    Parameter Description
    documentId A document identifier.
    propertyPath A property path or name.

    Returns

    PropertyDatabaseRecordKey The record key.

    Description

    Creates a record key from a document identifier and a property path.


    Declaration

    public PropertyDatabaseRecordKey CreateRecordKey(string documentId, Hash128 propertyHash);

    Parameters

    Parameter Description
    documentId A document identifier.
    propertyHash A property hash.

    Returns

    PropertyDatabaseRecordKey The record key.

    Description

    Creates a record key from a document identifier and a property hash.


    Declaration

    public PropertyDatabaseRecordKey CreateRecordKey(ulong documentKey, Hash128 propertyPathHash);

    Parameters

    Parameter Description
    documentKey A document key.
    propertyPathHash A property hash.

    Returns

    PropertyDatabaseRecordKey The record key.

    Description

    Creates a record key from a document key and a property hash.


    Declaration

    public PropertyDatabaseRecordKey CreateRecordKey(string propertyPath);

    Parameters

    Parameter Description
    propertyPath A property path or name.

    Returns

    PropertyDatabaseRecordKey The record key.

    Description

    Creates a record key from a property path.

    The document identifier will be considered as null and the document key will be 0.

    Additional resources: PropertyDatabaseRecordKey, IPropertyDatabaseView.Store, IPropertyDatabaseView.TryLoad and IPropertyDatabaseView.Invalidate.


    Declaration

    public PropertyDatabaseRecordKey CreateRecordKey(Hash128 propertyHash);

    Parameters

    Parameter Description
    propertyHash A property hash.

    Returns

    PropertyDatabaseRecordKey The record key.

    Description

    Creates a record key from a property hash.

    The document identifier will be considered as null and the document key will be 0.

    Additional resources: PropertyDatabaseRecordKey, IPropertyDatabaseView.CreatePropertyHash, IPropertyDatabaseView.Store, IPropertyDatabaseView.TryLoad and IPropertyDatabaseView.Invalidate.


    Web Proxy Viewer  |  New URL  |  Original Page