本文整理汇总了C#中Aurora.Framework.AssetBase.CompressedPack方法的典型用法代码示例。如果您正苦于以下问题:C# AssetBase.CompressedPack方法的具体用法?C# AssetBase.CompressedPack怎么用?C# AssetBase.CompressedPack使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Aurora.Framework.AssetBase
的用法示例。
在下文中一共展示了AssetBase.CompressedPack方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Store
public virtual UUID Store(AssetBase asset)
{
if ((asset.Flags & AssetFlags.Local) == AssetFlags.Local)
{
if (m_Cache != null)
m_Cache.Cache(asset);
return asset.ID;
}
UUID newID = UUID.Zero;
string request = asset.CompressedPack();
List<string> serverURIs =
m_registry.RequestModuleInterface<IConfigurationService>().FindValueOf("AssetServerURI");
if (m_serverURL != string.Empty)
serverURIs = new List<string>(new string[1] {m_serverURL});
foreach (string mServerUri in serverURIs)
{
string resp = SynchronousRestFormsRequester.MakeRequest("POST", mServerUri + "/", request);
if (resp == "")
continue;
if (UUID.TryParse(resp, out newID))
{
// Placing this here, so that this work with old asset servers that don't send any reply back
// SynchronousRestObjectRequester returns somethins that is not an empty string
asset.ID = newID;
if (m_Cache != null)
m_Cache.Cache(asset);
}
}
return newID;
}