scripts
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Runtime.Remoting.Channels
|
||||
{
|
||||
/// <summary>Provides required functions and properties for the receiver channels.</summary>
|
||||
// Token: 0x020003A1 RID: 929
|
||||
[ComVisible(true)]
|
||||
public interface IChannelReceiver : IChannel
|
||||
{
|
||||
/// <summary>Gets the channel-specific data.</summary>
|
||||
/// <returns>The channel data.</returns>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission. </exception>
|
||||
/// <PermissionSet>
|
||||
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" />
|
||||
/// </PermissionSet>
|
||||
// Token: 0x17000703 RID: 1795
|
||||
// (get) Token: 0x060025A1 RID: 9633
|
||||
object ChannelData { get; }
|
||||
|
||||
/// <summary>Returns an array of all the URLs for a URI.</summary>
|
||||
/// <returns>An array of the URLs.</returns>
|
||||
/// <param name="objectURI">The URI for which URLs are required. </param>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission. </exception>
|
||||
// Token: 0x060025A2 RID: 9634
|
||||
string[] GetUrlsForUri(string objectURI);
|
||||
|
||||
/// <summary>Instructs the current channel to start listening for requests.</summary>
|
||||
/// <param name="data">Optional initialization information. </param>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission. </exception>
|
||||
// Token: 0x060025A3 RID: 9635
|
||||
void StartListening(object data);
|
||||
|
||||
/// <summary>Instructs the current channel to stop listening for requests.</summary>
|
||||
/// <param name="data">Optional state information for the channel. </param>
|
||||
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission. </exception>
|
||||
// Token: 0x060025A4 RID: 9636
|
||||
void StopListening(object data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user