Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/InternalRemotingServices.cs
T
2026-04-10 22:50:51 +02:00

31 lines
1.1 KiB
C#

using System;
using System.Collections;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Metadata;
using Cpp2IlInjected;
namespace System.Runtime.Remoting
{
/// <summary>Defines utility methods for use by the .NET Framework remoting infrastructure.</summary>
// Token: 0x020004A8 RID: 1192
[Token(Token = "0x20004A8")]
[ComVisible(true)]
public class InternalRemotingServices
{
/// <summary>Gets an appropriate SOAP-related attribute for the specified class member or method parameter.</summary>
/// <param name="reflectionObject">A class member or method parameter.</param>
/// <returns>The SOAP-related attribute for the specified class member or method parameter.</returns>
// Token: 0x06002708 RID: 9992 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002708")]
[Address(RVA = "0x237A930", Offset = "0x2379730", VA = "0x18237A930")]
public static SoapAttribute GetCachedSoapAttribute(object reflectionObject)
{
return null;
}
// Token: 0x0400170E RID: 5902
[Token(Token = "0x400170E")]
private static Hashtable _soapAttributes;
}
}