mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-19 09:56:10 +00:00
f2ac1ece55
add
77 lines
2.5 KiB
C#
77 lines
2.5 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Microsoft.InfoCards.GetLedgerEntryForRecipientRequest
|
|
// Assembly: infocard, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
|
// MVID: ADE0A079-11DB-4A46-8BDE-D2A592CA8DEA
|
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00001-msil\Virus.Win32.Expiro.w-1f15ee7e9f7da02b6bfb4c5a5e6484eb9fa71b82d3699c54bcc7a31794b4a66d.exe
|
|
|
|
using Microsoft.InfoCards.Diagnostics;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.InfoCards
|
|
{
|
|
internal class GetLedgerEntryForRecipientRequest : UIAgentRequest
|
|
{
|
|
private Uri m_cardId;
|
|
private string m_recipientId;
|
|
private byte[] m_bytes;
|
|
|
|
public GetLedgerEntryForRecipientRequest(
|
|
IntPtr rpcHandle,
|
|
Stream inArgs,
|
|
Stream outArgs,
|
|
ClientUIRequest parent)
|
|
: base(rpcHandle, inArgs, outArgs, parent)
|
|
{
|
|
}
|
|
|
|
protected override void OnMarshalInArgs()
|
|
{
|
|
InfoCardTrace.Assert(this.InArgs.Length > 0L, "The user preferences must be specified");
|
|
BinaryReader reader = (BinaryReader) new InfoCardBinaryReader(this.InArgs, Encoding.Unicode);
|
|
this.m_cardId = Utility.DeserializeUri(reader);
|
|
this.m_recipientId = Utility.DeserializeString(reader);
|
|
}
|
|
|
|
protected override void OnProcess()
|
|
{
|
|
InfoCardTrace.Assert((Uri) null != this.m_cardId, "The card Id must not be null");
|
|
InfoCardTrace.Assert(!string.IsNullOrEmpty(this.m_recipientId), "The thumbPrint must be specified");
|
|
List<QueryParameter> queryParameterList = new List<QueryParameter>();
|
|
queryParameterList.Add(new QueryParameter("ix_objecttype", new object[1]
|
|
{
|
|
(object) -1
|
|
}));
|
|
queryParameterList.Add(new QueryParameter("ix_parentid", new object[1]
|
|
{
|
|
(object) GlobalId.DeriveFrom(this.m_cardId.ToString())
|
|
}));
|
|
queryParameterList.Add(new QueryParameter("ix_name", new object[1]
|
|
{
|
|
(object) this.m_recipientId
|
|
}));
|
|
StoreConnection connection = StoreConnection.GetConnection();
|
|
try
|
|
{
|
|
DataRow singleRow = connection.GetSingleRow(queryParameterList.ToArray());
|
|
if (singleRow == null)
|
|
return;
|
|
this.m_bytes = singleRow.GetDataField();
|
|
}
|
|
finally
|
|
{
|
|
connection.Close();
|
|
}
|
|
}
|
|
|
|
protected override void OnMarshalOutArgs()
|
|
{
|
|
if (this.m_bytes == null)
|
|
return;
|
|
this.OutArgs.Write(this.m_bytes, 0, this.m_bytes.Length);
|
|
}
|
|
}
|
|
}
|