版本: Unity 6 (6000.0)
语言英语
  • C#

IPropertyDatabaseView.Invalidate

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每个更改建议,并在适用的情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public void Invalidate(InAttribute) recordKey);

参数

recordKey 一个记录键。

描述

使单个属性记录失效,使其不再可检索。

using (var view = propertyDatabase.GetView())
{
    // Store a property.
    var propertyRecordKey = view.CreateRecordKey("path/to/my/asset", "m_Color");
    view.Store(propertyRecordKey, new Color(1, 0, 1));

    // Invalidate the property.
    view.Invalidate(propertyRecordKey);

    // The invalidated property can no longer be retrieved.
    if (view.TryLoad(propertyRecordKey, out object propertyValue))
        Assert.Fail("TryLoad should have failed to retrieve the record.");
}


声明

public void Invalidate(string documentId);

参数

documentId 一个文档标识符。

描述

使整个文档存储的所有属性失效。

using (var view = propertyDatabase.GetView())
{
    // Store multiple properties of a document.
    var document = "path/to/my/asset";
    view.Store(document, "prop1", "value1");
    view.Store(document, "prop2", "value2");

    // Invalidate the entire document.
    view.Invalidate(document);

    // The invalidated document can no longer be retrieved.
    if (view.TryLoad(view.CreateDocumentKey(document), out IEnumerable<object> documentValues))
        Assert.Fail("TryLoad should have failed to retrieve the document values.");
}


声明

public void Invalidate(ulong documentKey);

参数

documentKey 一个文档键。

描述

使整个文档存储的所有属性失效。

using (var view = propertyDatabase.GetView())
{
    // Store multiple properties of a document.
    var documentKey = view.CreateDocumentKey("path/to/my/asset");
    view.Store(documentKey, view.CreatePropertyHash("prop1"), "value1");
    view.Store(documentKey, view.CreatePropertyHash("prop2"), "value2");

    // Invalidate the entire document by its key.
    view.Invalidate(documentKey);

    // The invalidated document can no longer be retrieved.
    if (view.TryLoad(documentKey, out IEnumerable<object> documentKeyValues))
        Assert.Fail("TryLoad should have failed to retrieve the document values.");
}