File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Classic TcpListenerExample/CPP
System.Net.Sockets.TcpListener/CPP
csharp/VS_Snippets_Remoting
Classic TcpListenerExample/CS
System.Net.Sockets.TcpListener/CS
visualbasic/VS_Snippets_Remoting
Classic TcpListenerExample/VB
System.Net.Sockets.TcpListener/VB Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ int main()
41
41
Console::Write ( " Waiting for a connection... " );
42
42
43
43
// Perform a blocking call to accept requests.
44
- // You could also user server.AcceptSocket() here.
44
+ // You could also use server.AcceptSocket() here.
45
45
TcpClient^ client = server->AcceptTcpClient ();
46
46
Console::WriteLine ( " Connected!" );
47
47
data = nullptr ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ void main()
48
48
Console::Write ( " Waiting for a connection... " );
49
49
50
50
// Perform a blocking call to accept requests.
51
- // You could also user server.AcceptSocket() here.
51
+ // You could also use server.AcceptSocket() here.
52
52
TcpClient^ client = server->AcceptTcpClient ();
53
53
Console::WriteLine ( " Connected!" );
54
54
data = nullptr ;
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ static void Main(string[] args)
41
41
Console . Write ( "Waiting for a connection... " ) ;
42
42
43
43
// Perform a blocking call to accept requests.
44
- // You could also user server.AcceptSocket() here.
44
+ // You could also use server.AcceptSocket() here.
45
45
TcpClient client = server . AcceptTcpClient ( ) ;
46
46
Console . WriteLine ( "Connected!" ) ;
47
47
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public static void Main()
47
47
Console . Write ( "Waiting for a connection... " ) ;
48
48
49
49
// Perform a blocking call to accept requests.
50
- // You could also user server.AcceptSocket() here.
50
+ // You could also use server.AcceptSocket() here.
51
51
TcpClient client = server . AcceptTcpClient ( ) ;
52
52
Console . WriteLine ( "Connected!" ) ;
53
53
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ Class MyTcpListener
39
39
Console.Write( "Waiting for a connection... " )
40
40
41
41
' Perform a blocking call to accept requests.
42
- ' You could also user server.AcceptSocket() here.
42
+ ' You could also use server.AcceptSocket() here.
43
43
Dim client As TcpClient = server.AcceptTcpClient()
44
44
Console.WriteLine( "Connected!" )
45
45
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Class MyTcpListener
29
29
Console.Write( "Waiting for a connection... " )
30
30
31
31
' Perform a blocking call to accept requests.
32
- ' You could also user server.AcceptSocket() here.
32
+ ' You could also use server.AcceptSocket() here.
33
33
Dim client As TcpClient = server.AcceptTcpClient()
34
34
Console.WriteLine( "Connected!" )
35
35
You can’t perform that action at this time.
0 commit comments