Not
Bu sayfaya erişim yetkilendirme gerektiriyor. Oturum açmayı veya dizinleri değiştirmeyi deneyebilirsiniz.
Bu sayfaya erişim yetkilendirme gerektiriyor. Dizinleri değiştirmeyi deneyebilirsiniz.
An enum class that specifies when the Object Model will load the documents imported by the document being loaded.
public enum ImportsLoadStrategy
{
LazyLoad,
Load,
DoNotLoad
}
- LazyLoad: the imports will only load when the object model needs access to definitions that exist in the imported files.
For example, if
FetchObjectAsyncis called, the imports will not load because they are not required immediately. If after loading the document, an API likeCreateResolvedEntityAsyncis called, the imports will load before continuing the run. - Load: the imports will be loaded along with the document when calling
FetchObjectAsync. - DoNotLoad: the imports will not load at any point. The object model will log an error if it needs an import to load during the run.