开发者

Creating a COM Callable Wrapper For System.Net.NetworkInformation.Ping

开发者 https://www.devze.com 2023-01-31 20:12 出处:网络
I\'m working on creating a COM callable wrapper for the System.Net.NetworkInformation.Ping class for use in WSH scripts. I\'ve gotten it to compile, but it\'s not working when called from WSH. I\'m no

I'm working on creating a COM callable wrapper for the System.Net.NetworkInformation.Ping class for use in WSH scripts. I've gotten it to compile, but it's not working when called from WSH. I'm not very familiar with COM, so please forgive me if the error is obvious.

Here is the code in my assembly:

using System;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Net;
using System.Net.NetworkInformation;


[assembly: AssemblyVersion("0.0.1.0")]

namespace net.digital_traffic.interop.wrapper
{
[ComVisible(true)]
public interface IPing
{
    //void OnPingCompleted(PingCompletedEventArgs e);
    PingReply Send(IPAddress address);
    PingReply Send(String hostNameOrAddress);
    PingReply Send(IPAddress address, Int32 timeout);
    PingReply Send(String hostNameOrAddress, Int32 timeout);
    PingReply Send(IPAddress address, Int32 timeout, Byte[] buffer);
    PingReply Send(String hostNameOrAddress, Int32 timeout, Byte[] buffer);
    PingReply Send(IPAddress hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options);
    PingReply Send(String hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options);
    /*
    void SendAsync(IPAddress address, Object userToken);
    void SendAsync(String hostNameOrAddress, Object userToken);
    void SendAsync(IPAddress address, Int32 timeout, Object userToken);
    void SendAsync(String hostNameOrAddress, Int32  timeout, Object userToken);
    void SendAsync(IPAddress address, Int32 timeout, Byte[] buffer, Object userToken);
    void SendAsync(String hostNameOrAddress, Int32 timeout, Byte[] buffer, Object userToken);
    void SendAsync(IPAddress address, Int32 timeout, Byte[] buffer, PingOptions options, Object userToken);
    void SendAsync(String hostNameOrAddress, Int32 timeout, Byte[] buffer, PingOptions options, Object userToken);
    void SendAsyncCancel();
    */
}

[ClassInterface(ClassInterfaceType.AutoDual), ComVisible(true)]
public class Ping : System.Net.NetworkInformation.Ping, IPing
{
    public Ping() : base() { }
}

}

Here is the code I'm using to call the assembly in WSH:

var ping1 开发者_StackOverflow社区= new ActiveXObject("net.digital_traffic.interop.wrapper.Ping");

WScript.Echo(ping1.Send("127.0.0.1"));

The above gives me "'ping1' is null or not an object".


These may help:

Registering my .net assembly for COM interoperability doesn't expose my methods

http://www.csharphelp.com/2006/08/building-com-objects-in-c/

http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.comsourceinterfacesattribute.aspx

Also, can you give information about how you're specifying your ProgID, and how you're registering your control - can then update the answer with more relevant suggestions.

0

精彩评论

暂无评论...
验证码 换一张
取 消