Udostępnij za pośrednictwem


NamedPipeClientStream.NumberOfServerInstances Właściwość

Definicja

Pobiera liczbę wystąpień serwera, które mają taką samą nazwę potoku.

public:
 property int NumberOfServerInstances { int get(); };
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public int NumberOfServerInstances { get; }
public int NumberOfServerInstances { get; }
public int NumberOfServerInstances { [System.Security.SecurityCritical] get; }
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
member this.NumberOfServerInstances : int
member this.NumberOfServerInstances : int
[<get: System.Security.SecurityCritical>]
member this.NumberOfServerInstances : int
Public ReadOnly Property NumberOfServerInstances As Integer

Wartość właściwości

Liczba wystąpień serwera, które mają taką samą nazwę potoku.

Atrybuty

Wyjątki

Uchwyt potoku nie został ustawiony.

-lub-

Bieżący NamedPipeClientStream obiekt nie został jeszcze połączony z obiektem NamedPipeServerStream .

Potok jest uszkodzony lub wystąpił błąd we/wy.

Uchwyt bazowego potoku jest zamknięty.

Przykłady

W poniższym przykładzie pokazano metodę wysyłania ciągu z procesu nadrzędnego do procesu podrzędnego przy użyciu nazwanych potoków. W tym przykładzie NamedPipeClientStream obiekt jest tworzony w procesie podrzędnym, który następnie łączy się z potokiem na komputerze lokalnym. Przykład serwera można zobaczyć w NamedPipeServerStream klasie . Ten przykład jest częścią większego przykładu udostępnionego NamedPipeServerStream dla klas i NamedPipeClientStream .

using System;
using System.IO;
using System.IO.Pipes;

class PipeClient
{
    static void Main(string[] args)
    {
        using (NamedPipeClientStream pipeClient =
            new NamedPipeClientStream(".", "testpipe", PipeDirection.In))
        {

            // Connect to the pipe or wait until the pipe is available.
            Console.Write("Attempting to connect to pipe...");
            pipeClient.Connect();

            Console.WriteLine("Connected to pipe.");
            Console.WriteLine("There are currently {0} pipe server instances open.",
               pipeClient.NumberOfServerInstances);
            using (StreamReader sr = new StreamReader(pipeClient))
            {
                // Display the read text to the console
                string temp;
                while ((temp = sr.ReadLine()) != null)
                {
                    Console.WriteLine("Received from server: {0}", temp);
                }
            }
        }
        Console.Write("Press Enter to continue...");
        Console.ReadLine();
    }
}
Imports System.IO
Imports System.IO.Pipes
Imports System.Security.Principal

Class PipeClient

    Shared Sub Main(ByVal args As String())

        Dim pipeClient As New NamedPipeClientStream("localhost", _
                    "testpipe", PipeDirection.In, PipeOptions.None)

        ' Connect to the pipe or wait until the pipe is available.
        Console.WriteLine("Attempting to connect to the pipe...")
        pipeClient.Connect()

        Console.WriteLine("Connect to the pipe.")
        Console.WriteLine("There are currently {0} pipe server instances open.", _
                          pipeClient.NumberOfServerInstances)

        Dim sr As New StreamReader(pipeClient)
        Dim temp As String

        temp = sr.ReadLine()
        While Not temp Is Nothing
            Console.WriteLine("Received from server: {0}", temp)
            temp = sr.ReadLine()
        End While
        Console.Write("Press Enter to continue...")
        Console.ReadLine()
    End Sub
End Class

Uwagi

Ta właściwość zwraca liczbę wystąpień serwera dla NamedPipeServerStream obiektu, z którymi bieżący NamedPipeClientStream obiekt ma dojście do obiektu lub z nim jest połączony. Jeśli bieżący NamedPipeClientStream obiekt nie nawiązał jeszcze połączenia z nazwanym serwerem potoku lub jeśli bieżący uchwyt potoku nie został jeszcze ustawiony, ta właściwość zgłasza błąd InvalidOperationException.

Dotyczy