123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <?xml version="1.0" encoding="utf-8" standalone="yes"?>
- <doc>
- <members>
- <assembly>
- <name>UnityEngine.UnityWebRequestAssetBundleModule</name>
- </assembly>
- <member name="T:UnityEngine.Networking.DownloadHandlerAssetBundle">
- <summary>
- <para>A DownloadHandler subclass specialized for downloading AssetBundles.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAssetBundle.assetBundle">
- <summary>
- <para>Returns the downloaded AssetBundle, or null. (Read Only)</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAssetBundle.autoLoadAssetBundle">
- <summary>
- <para>If true, the AssetBundle will be loaded as part of the UnityWebRequest process. If false, the AssetBundle will be loaded on demand when accessing the DownloadHandlerAssetBundle.assetBundle property.</para>
- </summary>
- </member>
- <member name="P:UnityEngine.Networking.DownloadHandlerAssetBundle.isDownloadComplete">
- <summary>
- <para>Returns true if the data downloading portion of the operation is complete.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,System.UInt32)">
- <summary>
- <para>Standard constructor for non-cached asset bundles.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,System.UInt32,System.UInt32)">
- <summary>
- <para>Simple versioned constructor. Caches downloaded asset bundles.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- <param name="version">Current version number of the asset bundle at url. Increment to redownload.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Versioned constructor. Caches downloaded asset bundles.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- <param name="hash">A hash object defining the version of the asset bundle.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Versioned constructor. Caches downloaded asset bundles to a customized cache path.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="hash">A hash object defining the version of the asset bundle.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- <param name="cachedBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <param name="name">AssetBundle name which is used as the customized cache path.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.#ctor(System.String,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Versioned constructor. Caches downloaded asset bundles to a customized cache path.</para>
- </summary>
- <param name="url">The nominal (pre-redirect) URL at which the asset bundle is located.</param>
- <param name="hash">A hash object defining the version of the asset bundle.</param>
- <param name="crc">A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.</param>
- <param name="cachedBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <param name="name">AssetBundle name which is used as the customized cache path.</param>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.GetContent(UnityEngine.Networking.UnityWebRequest)">
- <summary>
- <para>Returns the downloaded AssetBundle, or null.</para>
- </summary>
- <param name="www">A finished UnityWebRequest object with DownloadHandlerAssetBundle attached.</param>
- <returns>
- <para>The same as DownloadHandlerAssetBundle.assetBundle</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.GetData">
- <summary>
- <para>Not implemented. Throws <a href="https:msdn.microsoft.comen-uslibrarysystem.notsupportedexception">NotSupportedException<a>.</para>
- </summary>
- <returns>
- <para>Not implemented.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.DownloadHandlerAssetBundle.GetText">
- <summary>
- <para>Not implemented. Throws <a href="https:msdn.microsoft.comen-uslibrarysystem.notsupportedexception">NotSupportedException<a>.</para>
- </summary>
- <returns>
- <para>Not implemented.</para>
- </returns>
- </member>
- <member name="T:UnityEngine.Networking.UnityWebRequestAssetBundle">
- <summary>
- <para>Helpers for downloading asset bundles using UnityWebRequest.</para>
- </summary>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,System.UInt32,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,System.UInt32,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,UnityEngine.Hash128,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.String,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="M:UnityEngine.Networking.UnityWebRequestAssetBundle.GetAssetBundle(System.Uri,UnityEngine.CachedAssetBundle,System.UInt32)">
- <summary>
- <para>Creates a UnityWebRequest optimized for downloading a Unity Asset Bundle via HTTP GET.</para>
- </summary>
- <param name="uri">The URI of the asset bundle to download.</param>
- <param name="crc">If nonzero, this number will be compared to the checksum of the downloaded asset bundle data. If the CRCs do not match, an error will be logged and the asset bundle will not be loaded. If set to zero, CRC checking will be skipped.</param>
- <param name="version">An integer version number, which will be compared to the cached version of the asset bundle to download. Increment this number to force Unity to redownload a cached asset bundle.
- Analogous to the version parameter for WWW.LoadFromCacheOrDownload.</param>
- <param name="hash">A version hash. If this hash does not match the hash for the cached version of this asset bundle, the asset bundle will be redownloaded.</param>
- <param name="cachedAssetBundle">A structure used to download a given version of AssetBundle to a customized cache path.</param>
- <returns>
- <para>A UnityWebRequest configured to downloading a Unity Asset Bundle.</para>
- </returns>
- </member>
- <member name="A:UnityEngine.UnityWebRequestAssetBundleModule">
- <summary>
- <para>The UnityWebRequestAssetBundle module provides the DownloadHandlerAssetBundle class to use UnityWebRequest to download Asset Bundles.</para>
- </summary>
- </member>
- </members>
- </doc>
|