Files
ZuneShell.dll/UIX/Microsoft/Iris/ViewItems/IndexLayoutInput.cs
T

35 lines
1.0 KiB
C#
Raw Normal View History

// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.ViewItems.IndexLayoutInput
// 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.Layout;
using Microsoft.Iris.Library;
namespace Microsoft.Iris.ViewItems
{
internal class IndexLayoutInput : ILayoutInput
{
private static readonly DataCookie s_dataProperty = DataCookie.ReserveSlot();
private Index _index;
private IndexType _type;
public IndexLayoutInput(Index index, IndexType type)
{
this._index = index;
this._type = type;
}
public Index Index => this._index;
public IndexType Type => this._type;
2021-03-31 17:20:20 -05:00
DataCookie ILayoutInput.Data => Data;
2021-03-31 17:20:20 -05:00
public static DataCookie Data => s_dataProperty;
2021-03-31 17:15:06 -05:00
public override string ToString() => InvariantString.Format("{0}(Index={1}, Type={2})", this.GetType().Name, Index, _type);
}
}