MalwareSourceCode/MSIL/Virus/Win32/E/Virus.Win32.Expiro.w-69bb73081eac86b8cf86f45e33515d0095855636967076e2b593d7a30cd80a07/Microsoft/InfoCards/UIAgentAsyncEndRequest.cs
2022-08-18 06:28:56 -05:00

79 lines
2.2 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Microsoft.InfoCards.UIAgentAsyncEndRequest
// 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 abstract class UIAgentAsyncEndRequest : UIAgentRequest
{
private int m_asyncHandle;
private bool m_isCompleted;
private object m_result;
private bool m_isCancelled;
public UIAgentAsyncEndRequest(
IntPtr rpcHandle,
Stream inArgs,
Stream outArgs,
ClientUIRequest parent)
: base(rpcHandle, inArgs, outArgs, parent)
{
}
public object Result
{
get
{
InfoCardTrace.Assert(this.m_isCompleted, "Attempt to pick up async result before completion.");
return this.m_result;
}
}
public bool IsCancelled
{
get
{
InfoCardTrace.Assert(this.m_isCompleted, "Attempt to pick up async result before completion.");
return this.m_isCancelled;
}
}
protected override void OnMarshalInArgs()
{
this.m_asyncHandle = new InfoCardBinaryReader(this.InArgs, Encoding.Unicode).ReadInt32();
InfoCardTrace.Assert(0 != this.m_asyncHandle, "null async handle");
}
protected override void OnProcess()
{
using (RpcAsyncResult rpcAsyncResult = this.ParentRequest.WaitForAsyncCompletion(this.m_asyncHandle))
{
this.m_isCancelled = rpcAsyncResult.IsCanceled;
if (!this.m_isCancelled)
this.m_result = rpcAsyncResult.Result;
}
this.m_isCompleted = true;
}
protected override sealed void OnMarshalOutArgs()
{
BinaryWriter writer = new BinaryWriter(this.OutArgs, Encoding.Unicode);
writer.Write(this.IsCancelled);
if (this.IsCancelled)
return;
this.OnMarshalAsyncOutArgs(writer);
}
protected virtual void OnMarshalAsyncOutArgs(BinaryWriter writer)
{
}
}
}