Class LoadOptions.ResourceLoadingResult

LoadOptions.ResourceLoadingResult class

Result of custom loading of resource

public class ResourceLoadingResult

Constructors

NameDescription
ResourceLoadingResult(byte[])Creates instance of loading result

Properties

NameDescription
Data { get; }Bynary data that loaded with custom loader - it must be set after loading

Fields

NameDescription
EncodingIfKnownSometimes encoding of resource is known after or during loading. In such case custom code can provide converter with that knowledge via this parameter. You can leave null in this parameter if encoding is unknown or does not matter.
ExceptionOfLoadingIfAnySometimes it’s impossible to load requested resource for some reason. Unavailability of resource often does not lead to crash of conversiov and result document can be created anyway(but maybe in a bit worse quality, without images etc.). If exception occured during loading, just catch it and put in this parameter - sometimes that information is usefull for converter for rendering of result.
LoadingCancelledSometimes for some reasons loading should not occure custom code. In such case please set this flag as True. In such case converter will try use internal default resource loader to get that result(as it behave in situation when custom strategy not supplied).
MIMETypeIfKnownSometimes knowledge about MIME type of loaded resource is usefull for converter You can provide MIME type(if it’d known after loading) in this parameter. Please leave parameter equal to null when MIME type unknown or it’s not necessary to supply it.

See Also