本文整理汇总了C#中System.Runtime.Remoting.Messaging.IMethodCallMessage接口的典型用法代码示例。如果您正苦于以下问题:C# IMethodCallMessage接口的具体用法?C# IMethodCallMessage怎么用?C# IMethodCallMessage使用的例子?那么恭喜您, 这里精选的接口代码示例或许可以为您提供帮助。
IMethodCallMessage接口属于System.Runtime.Remoting.Messaging命名空间,在下文中一共展示了IMethodCallMessage接口的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MyProxy
//引入命名空间
using System;
using System.Collections;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Proxies;
using System.Runtime.Remoting.Messaging;
using System.Security.Permissions;
namespace IMethodCallMessageNS
{
// MyProxy extends the CLR Remoting RealProxy.
// In the same class, in the Invoke method, the methods and properties of the
// IMethodCallMessage are demonstrated.
[PermissionSet(SecurityAction.Demand, Name="FullTrust")]
public class MyProxy : RealProxy
{
public MyProxy(Type myType) : base(myType)
{
// This constructor forwards the call to base RealProxy.
// RealProxy uses the Type to generate a transparent proxy.
}
public override IMessage Invoke(IMessage myIMessage)
{
Console.WriteLine("MyProxy.Invoke Start");
Console.WriteLine("");
ReturnMessage myReturnMessage = null;
if (myIMessage is IMethodCallMessage)
{
Console.WriteLine("Message is of type 'IMethodCallMessage'.");
Console.WriteLine("");
IMethodCallMessage myIMethodCallMessage;
myIMethodCallMessage=(IMethodCallMessage)myIMessage;
Console.WriteLine("InArgCount is : " +
myIMethodCallMessage.InArgCount.ToString());
foreach (object myObj in myIMethodCallMessage.InArgs)
{
Console.WriteLine("InArgs is : " + myObj.ToString());
}
for(int i=0; i<myIMethodCallMessage.InArgCount; i++)
{
Console.WriteLine("GetArgName(" +i.ToString() +") is : " +
myIMethodCallMessage.GetArgName(i));
Console.WriteLine("GetInArg("+i.ToString() +") is : " +
myIMethodCallMessage.GetInArg(i).ToString());
}
Console.WriteLine("");
}
else if (myIMessage is IMethodReturnMessage)
{
Console.WriteLine("Message is of type 'IMethodReturnMessage'.");
}
// Build Return Message
myReturnMessage = new ReturnMessage(5,null,0,null,
(IMethodCallMessage)myIMessage);
Console.WriteLine("MyProxy.Invoke - Finish");
return myReturnMessage;
}
}
// The class used to obtain Metadata.
[PermissionSet(SecurityAction.Demand, Name="FullTrust")]
public class MyMarshalByRefClass : MarshalByRefObject
{
public int MyMethod(string str, double dbl, int i)
{
Console.WriteLine("MyMarshalByRefClass.MyMethod {0} {1} {2}", str, dbl, i);
return 0;
}
}
// Main class that drives the whole sample.
public class ProxySample
{
[SecurityPermission(SecurityAction.LinkDemand)]
public static void Main()
{
Console.WriteLine("Generate a new MyProxy.");
MyProxy myProxy = new MyProxy(typeof(MyMarshalByRefClass));
Console.WriteLine("Obtain the transparent proxy from myProxy.");
MyMarshalByRefClass myMarshalByRefClassObj =
(MyMarshalByRefClass)myProxy.GetTransparentProxy();
Console.WriteLine("Calling the Proxy.");
object myReturnValue = myMarshalByRefClassObj.MyMethod("Microsoft", 1.2, 6);
Console.WriteLine("Sample Done.");
}
}
}