mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-19 09:56:10 +00:00
f2ac1ece55
add
81 lines
2.8 KiB
C#
81 lines
2.8 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Microsoft.InfoCards.RPIdentityRequirement
|
|
// Assembly: infocard, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
|
// MVID: 516D8B44-4448-4D2C-8B8E-FFBB3FFE472B
|
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Virus.Win32.Expiro.w-69bb73081eac86b8cf86f45e33515d0095855636967076e2b593d7a30cd80a07.exe
|
|
|
|
using Microsoft.InfoCards.Diagnostics;
|
|
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.InfoCards
|
|
{
|
|
internal class RPIdentityRequirement
|
|
{
|
|
private const int InvalidRow = 0;
|
|
private Uri m_infoCardId;
|
|
private int m_rowId;
|
|
private bool m_RPIdentityRequirement;
|
|
|
|
private RPIdentityRequirement()
|
|
{
|
|
}
|
|
|
|
public RPIdentityRequirement(Uri infoCardId, bool RPIdentityRequirement)
|
|
: this()
|
|
{
|
|
this.m_infoCardId = !((Uri) null == infoCardId) ? infoCardId : throw InfoCardTrace.ThrowHelperArgumentNull(nameof (infoCardId));
|
|
this.m_RPIdentityRequirement = RPIdentityRequirement;
|
|
}
|
|
|
|
public void Get(StoreConnection con)
|
|
{
|
|
DataRow dataRow = con != null ? this.TryGetRow(con, QueryDetails.FullRow) : throw InfoCardTrace.ThrowHelperArgumentNull(nameof (con));
|
|
if (dataRow == null)
|
|
return;
|
|
this.Deserialize((Stream) new MemoryStream(dataRow.GetDataField()));
|
|
this.m_rowId = dataRow.LocalId;
|
|
}
|
|
|
|
public void Serialize(Stream stream) => new BinaryWriter(stream, Encoding.Unicode).Write(this.m_RPIdentityRequirement);
|
|
|
|
public void Deserialize(Stream stream) => this.m_RPIdentityRequirement = new InfoCardBinaryReader(stream, Encoding.Unicode).ReadBoolean();
|
|
|
|
public void Save(StoreConnection con)
|
|
{
|
|
DataRow row = con != null ? this.TryGetRow(con, QueryDetails.FullHeader) : throw InfoCardTrace.ThrowHelperArgumentNull(nameof (con));
|
|
if (row == null)
|
|
{
|
|
row = new DataRow();
|
|
row.ObjectType = 5;
|
|
row.GlobalId = (GlobalId) Guid.NewGuid();
|
|
}
|
|
row.SetIndexValue("ix_parentid", (object) GlobalId.DeriveFrom(this.m_infoCardId.ToString()));
|
|
MemoryStream memoryStream = new MemoryStream();
|
|
this.Serialize((Stream) memoryStream);
|
|
row.SetDataField(memoryStream.ToArray());
|
|
con.Save(row);
|
|
this.m_rowId = row.LocalId;
|
|
}
|
|
|
|
public bool StrongIdentityRequired
|
|
{
|
|
get => this.m_RPIdentityRequirement;
|
|
set => this.m_RPIdentityRequirement = value;
|
|
}
|
|
|
|
protected DataRow TryGetRow(StoreConnection con, QueryDetails details)
|
|
{
|
|
InfoCardTrace.Assert((Uri) null != this.m_infoCardId, "null infocard id");
|
|
return con.GetSingleRow(details, new QueryParameter("ix_objecttype", new object[1]
|
|
{
|
|
(object) 5
|
|
}), new QueryParameter("ix_parentid", new object[1]
|
|
{
|
|
(object) GlobalId.DeriveFrom(this.m_infoCardId.ToString())
|
|
}));
|
|
}
|
|
}
|
|
}
|