Visual Basic (Declaration) | |
---|---|
Public Enum RpcProtseq Inherits System.Enum |
C# | |
---|---|
public enum RpcProtseq : System.Enum |
Member | Description |
---|---|
ncacn_at_dsp | Connection-oriented AppleTalk DSP Client: Apple Macintosh Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncacn_dnet_nsp | Connection-oriented DECnet transport Client only: MS-DOS, Windows 3.x |
ncacn_http | Connection-oriented TCP/IP using Microsoft Internet Information Server as HTTP proxy Client only: Windows Me/98/95 Client and Server: Windows Server 2003, Windows XP, Windows 2000 |
ncacn_ip_tcp | Connection-oriented Transmission Control Protocol/Internet Protocol (TCP/IP) Client only: MS-DOS, Windows 3.x, and Apple Macintosh Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT, Windows Me, Windows 98, Windows 95 |
ncacn_nb_ipx | Connection-oriented NetBIOS over Internet Packet Exchange (IPX) Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncacn_nb_nb | Connection-oriented NetBIOS Enhanced User Interface (NetBEUI) Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT, Windows Me, Windows 98, Windows 95 |
ncacn_nb_tcp | Connection-oriented NetBIOS over Transmission Control Protocol (TCP) Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncacn_np | Connection-oriented named pipes Client only: MS-DOS, Windows 3.x, Windows 95 Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncacn_spx | Connection-oriented Sequenced Packet Exchange (SPX) Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT, Windows Me, Windows 98, Windows 95 |
ncacn_vns_spp | Connection-oriented Vines scalable parallel processing (SPP) transport Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncadg_ip_udp | Datagram (connectionless) User Datagram Protocol/Internet Protocol (UDP/IP) Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncadg_ipx | Datagram (connectionless) IPX Client only: MS-DOS, Windows 3.x Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT |
ncadg_mq | Datagram (connectionless) over the Microsoft Message Queue Server (MSMQ) Client only: Windows Me/98/95 Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT Server 4.0 with SP3 and later |
ncalrpc | Local procedure call Client and Server: Windows Server 2003, Windows XP, Windows 2000, Windows NT, Windows Me, Windows 98, Windows 95 |
RpcLibrary/RpcLibrary.Test/TestClientApi.cs
C# | ![]() |
---|---|
using (RpcClientApi client = new RpcClientApi(Guid.NewGuid(), RpcProtseq.ncacn_ip_tcp, null, "123")) Assert.AreEqual(RpcProtseq.ncacn_ip_tcp, client.Protocol); |
VB.NET | ![]() |
---|---|
Using client As New RpcClientApi(Guid.NewGuid(), RpcProtseq.ncacn_ip_tcp, Nothing, "123") Assert.AreEqual(RpcProtseq.ncacn_ip_tcp, client.Protocol) End Using |
System.Object
System.ValueType
System.Enum
CSharpTest.Net.RpcLibrary.RpcProtseq
Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7