Sdílet prostřednictvím


SoundPlayer Konstruktory

Definice

Inicializuje novou instanci SoundPlayer třídy .

Přetížení

SoundPlayer()

Inicializuje novou instanci SoundPlayer třídy .

SoundPlayer(Stream)

Inicializuje novou instanci SoundPlayer třídy a připojí .wav soubor v rámci zadaného Streamobjektu .

SoundPlayer(String)

Inicializuje novou instanci SoundPlayer třídy a připojí zadaný soubor .wav.

SoundPlayer(SerializationInfo, StreamingContext)
Zastaralé.

Inicializuje novou instanci SoundPlayer třídy .

SoundPlayer()

Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs

Inicializuje novou instanci SoundPlayer třídy .

public:
 SoundPlayer();
public SoundPlayer ();
Public Sub New ()

Poznámky

Tento konstruktor inicializuje bez zdroje zvuku SoundPlayer . Dokud není nakonfigurována cesta ke zdroji zvuku, SoundPlayer přehraje pípnutí zvuk, když je volána jedna z jeho metod přehrávání.

Viz také

Platí pro

SoundPlayer(Stream)

Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs

Inicializuje novou instanci SoundPlayer třídy a připojí .wav soubor v rámci zadaného Streamobjektu .

public:
 SoundPlayer(System::IO::Stream ^ stream);
public SoundPlayer (System.IO.Stream stream);
public SoundPlayer (System.IO.Stream? stream);
new System.Media.SoundPlayer : System.IO.Stream -> System.Media.SoundPlayer
Public Sub New (stream As Stream)

Parametry

stream
Stream

A Stream do .wav souboru.

Poznámky

Parametr Stream by měl obsahovat streamStream soubor .wav. Data vrácená metodou ReadStream by měla být data v souboru .wav.

Viz také

Platí pro

SoundPlayer(String)

Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs

Inicializuje novou instanci SoundPlayer třídy a připojí zadaný soubor .wav.

public:
 SoundPlayer(System::String ^ soundLocation);
public SoundPlayer (string soundLocation);
new System.Media.SoundPlayer : string -> System.Media.SoundPlayer
Public Sub New (soundLocation As String)

Parametry

soundLocation
String

Umístění .wav souboru, který se má načíst.

Výjimky

Hodnotu adresy URL určenou parametrem soundLocation nelze přeložit.

Poznámky

Řetězec předaný parametru soundLocation může být buď cesta k souboru, nebo adresa URL .wav souboru. Pokud cesta nebo adresa URL nejsou platné, SoundPlayer bude i nadále vytvořen, ale následná volání metody načtení nebo přehrávání selžou.

Viz také

Platí pro

SoundPlayer(SerializationInfo, StreamingContext)

Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs
Zdroj:
SoundPlayer.cs

Upozornění

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

Inicializuje novou instanci SoundPlayer třídy .

protected:
 SoundPlayer(System::Runtime::Serialization::SerializationInfo ^ serializationInfo, System::Runtime::Serialization::StreamingContext context);
protected SoundPlayer (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected SoundPlayer (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context);
new System.Media.SoundPlayer : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Media.SoundPlayer
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Media.SoundPlayer : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Media.SoundPlayer
Protected Sub New (serializationInfo As SerializationInfo, context As StreamingContext)

Parametry

serializationInfo
SerializationInfo

Slouží SerializationInfo k deserializaci.

context
StreamingContext

Cíl, který má být použit pro deserializaci.

Atributy

Výjimky

Zadaný SoundLocation v serializationInfo nelze vyřešit.

Viz také

Platí pro