Files
MicrosoftIris/UIX/Microsoft/Iris/OS/DllResource.cs
T
2022-03-03 08:14:05 -06:00

43 lines
1.4 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.OS.DllResource
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
// Assembly location: C:\Program Files\Zune\UIX.dll
using Microsoft.Iris.Data;
using System;
namespace Microsoft.Iris.OS
{
internal class DllResource : Resource
{
private string _dll;
private string _identifier;
private IntPtr _buffer;
private uint _length;
internal DllResource(string uri, string dll, string identifier)
: base(uri, true)
{
_dll = dll;
_identifier = identifier;
}
public override string Identifier => _identifier;
protected override void StartAcquisition(bool forceSynchronous)
{
string errorDetails = null;
if (_buffer == IntPtr.Zero && !NativeApi.SpLoadBinaryResource(_dll, _identifier, !DllResources.StaticDllResourcesOnly, out _buffer, out _length))
errorDetails = string.Format("Resource not found: res://{0}!{1}", _dll, _identifier);
NotifyAcquisitionComplete(_buffer, _length, false, errorDetails);
}
protected override void CancelAcquisition()
{
}
public override string ToString() => _dll + "|" + _identifier.ToLowerInvariant();
}
}