mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
Add decompiled projects for UIX and UIXControls
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
// Decompiled with JetBrains decompiler
|
||||
// Type: Microsoft.Iris.Markup.LoadResult
|
||||
// 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.Library;
|
||||
using Microsoft.Iris.Session;
|
||||
using System;
|
||||
|
||||
namespace Microsoft.Iris.Markup
|
||||
{
|
||||
internal abstract class LoadResult : SharedDisposableObject
|
||||
{
|
||||
private string _uri;
|
||||
protected string _uriUnderlying;
|
||||
private uint _islandReferences;
|
||||
private string _compilerReferenceName;
|
||||
public static LoadResult[] EmptyList = new LoadResult[0];
|
||||
|
||||
public LoadResult(string uri) => this._uri = uri;
|
||||
|
||||
protected override void OnDispose() => base.OnDispose();
|
||||
|
||||
public string Uri => this._uri;
|
||||
|
||||
public string UnderlyingUri => this._uriUnderlying;
|
||||
|
||||
public string ErrorContextUri => this._uriUnderlying == null ? this._uri : this._uriUnderlying;
|
||||
|
||||
public uint IslandReferences => this._islandReferences;
|
||||
|
||||
public void AddReference(uint islandId)
|
||||
{
|
||||
if (((int)this._islandReferences & (int)islandId) != 0)
|
||||
return;
|
||||
if (this._islandReferences == 0U)
|
||||
this.RegisterUsage((object)this);
|
||||
this._islandReferences |= islandId;
|
||||
foreach (LoadResult dependency in this.Dependencies)
|
||||
{
|
||||
if (dependency != this)
|
||||
dependency.AddReference(islandId);
|
||||
}
|
||||
}
|
||||
|
||||
public void RemoveReferenceDeep(uint islandId)
|
||||
{
|
||||
if ((this._islandReferences & islandId) <= 0U)
|
||||
return;
|
||||
this._islandReferences &= ~islandId;
|
||||
foreach (LoadResult dependency in this.Dependencies)
|
||||
{
|
||||
if (dependency != this)
|
||||
dependency.RemoveReferenceDeep(islandId);
|
||||
}
|
||||
if (this._islandReferences != 0U)
|
||||
return;
|
||||
this.UnregisterUsage((object)this);
|
||||
foreach (LoadResult dependency in this.Dependencies)
|
||||
{
|
||||
if (dependency != this)
|
||||
dependency.UnregisterUsage((object)this);
|
||||
}
|
||||
}
|
||||
|
||||
public void RemoveAllReferences() => this.RemoveReferenceDeep(this.IslandReferences);
|
||||
|
||||
protected void RegisterDependenciesUsage()
|
||||
{
|
||||
foreach (LoadResult dependency in this.Dependencies)
|
||||
{
|
||||
if (dependency != this)
|
||||
{
|
||||
dependency.RegisterUsage((object)this);
|
||||
dependency.AddReference(this._islandReferences);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void RegisterProxyUsage() => this.RegisterUsage((object)this);
|
||||
|
||||
public void UnregisterProxyUsage() => this.UnregisterUsage((object)this);
|
||||
|
||||
public virtual void Load(LoadPass pass)
|
||||
{
|
||||
}
|
||||
|
||||
public abstract TypeSchema FindType(string name);
|
||||
|
||||
public abstract LoadResultStatus Status { get; }
|
||||
|
||||
public virtual LoadResult[] Dependencies => LoadResult.EmptyList;
|
||||
|
||||
public virtual TypeSchema[] ExportTable => TypeSchema.EmptyList;
|
||||
|
||||
public virtual bool Cachable => true;
|
||||
|
||||
public void SetCompilerReferenceName(string name)
|
||||
{
|
||||
if (this._compilerReferenceName == null)
|
||||
{
|
||||
this._compilerReferenceName = name;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (name.Equals(this._compilerReferenceName, StringComparison.OrdinalIgnoreCase))
|
||||
return;
|
||||
ErrorManager.ReportWarning("Multiple names '{0}' and '{1}' used to refer to the same entity. The first name will be used for all references to this item within compiled UIB files", (object)this._compilerReferenceName, (object)name);
|
||||
}
|
||||
}
|
||||
|
||||
public virtual string GetCompilerReferenceName() => this._compilerReferenceName;
|
||||
|
||||
public override string ToString() => this._uri;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user