Skip to content

Commit cc0d90c

Browse files
JamesNKRon Petrusha
authored andcommitted
Replace .NET Framework usage (#11592)
Article applies to both .NET Framework and .NET Core. Have replaced ".NET Framework" with just ".NET"
1 parent 476f1ad commit cc0d90c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/standard/io/pipe-operations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Pipe Operations in the .NET Framework"
2+
title: "Pipe Operations in .NET"
33
ms.date: "03/30/2017"
44
ms.technology: dotnet-standard
55
helpviewer_keywords:
@@ -11,22 +11,22 @@ ms.assetid: 7b964ebd-7a4f-4d28-8194-7841f9e4c702
1111
author: "mairaw"
1212
ms.author: "mairaw"
1313
---
14-
# Pipe Operations in the .NET Framework
14+
# Pipe Operations in .NET
1515
Pipes provide a means for interprocess communication. There are two types of pipes:
1616

1717
- Anonymous pipes.
1818

1919
Anonymous pipes provide interprocess communication on a local computer. Anonymous pipes require less overhead than named pipes but offer limited services. Anonymous pipes are one-way and cannot be used over a network. They support only a single server instance. Anonymous pipes are useful for communication between threads, or between parent and child processes where the pipe handles can be easily passed to the child process when it is created.
2020

21-
In the .NET Framework, you implement anonymous pipes by using the <xref:System.IO.Pipes.AnonymousPipeServerStream> and <xref:System.IO.Pipes.AnonymousPipeClientStream> classes.
21+
In .NET, you implement anonymous pipes by using the <xref:System.IO.Pipes.AnonymousPipeServerStream> and <xref:System.IO.Pipes.AnonymousPipeClientStream> classes.
2222

2323
See [How to: Use Anonymous Pipes for Local Interprocess Communication](../../../docs/standard/io/how-to-use-anonymous-pipes-for-local-interprocess-communication.md).
2424

2525
- Named pipes.
2626

2727
Named pipes provide interprocess communication between a pipe server and one or more pipe clients. Named pipes can be one-way or duplex. They support message-based communication and allow multiple clients to connect simultaneously to the server process using the same pipe name. Named pipes also support impersonation, which enables connecting processes to use their own permissions on remote servers.
2828

29-
In the .NET Framework, you implement named pipes by using the <xref:System.IO.Pipes.NamedPipeServerStream> and <xref:System.IO.Pipes.NamedPipeClientStream> classes.
29+
In .NET, you implement named pipes by using the <xref:System.IO.Pipes.NamedPipeServerStream> and <xref:System.IO.Pipes.NamedPipeClientStream> classes.
3030

3131
See [How to: Use Named Pipes for Network Interprocess Communication](../../../docs/standard/io/how-to-use-named-pipes-for-network-interprocess-communication.md).
3232

0 commit comments

Comments
 (0)