Table of Contents

Interface IContentIndexMap

Namespace
Stride.Core.Serialization.Contents
Assembly
Stride.Core.Serialization.dll
public interface IContentIndexMap : IDisposable
Inherited Members
Extension Methods

Properties

this[string]

ObjectId this[string url] { get; set; }

Parameters

url string

Property Value

ObjectId

Methods

Contains(string)

bool Contains(string url)

Parameters

url string

Returns

bool

GetMergedIdMap()

IEnumerable<KeyValuePair<string, ObjectId>> GetMergedIdMap()

Returns

IEnumerable<KeyValuePair<string, ObjectId>>

SearchValues(Func<KeyValuePair<string, ObjectId>, bool>)

IEnumerable<KeyValuePair<string, ObjectId>> SearchValues(Func<KeyValuePair<string, ObjectId>, bool> predicate)

Parameters

predicate Func<KeyValuePair<string, ObjectId>, bool>

Returns

IEnumerable<KeyValuePair<string, ObjectId>>

TryGetValue(string, out ObjectId)

bool TryGetValue(string url, out ObjectId objectId)

Parameters

url string
objectId ObjectId

Returns

bool