Partager via


LoggingChannel Constructeurs

Définition

Surcharges

LoggingChannel(String)

Ce constructeur crée un LoggingChannel en mode de compatibilité Windows 8.1.

LoggingChannel(String, LoggingChannelOptions)

Initialise une nouvelle instance de la classe LoggingChannel avec les options spécifiées.

LoggingChannel(String, LoggingChannelOptions, Guid)

Initialise une nouvelle instance de la classe LoggingChannel avec les options et l’ID de canal spécifiés.

LoggingChannel(String)

Ce constructeur crée un LoggingChannel en mode de compatibilité Windows 8.1.

public:
 LoggingChannel(Platform::String ^ name);
/// [Windows.Foundation.Metadata.Deprecated("This constructor creates a LoggingChannel in Windows 8.1 compatibility mode. Prefer the two-parameter constructor.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.Foundation.UniversalApiContract)]
 LoggingChannel(winrt::hstring const& name);
/// [Windows.Foundation.Metadata.Deprecated("This constructor creates a LoggingChannel in Windows 8.1 compatibility mode. Prefer the two-parameter constructor.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
 LoggingChannel(winrt::hstring const& name);
[Windows.Foundation.Metadata.Deprecated("This constructor creates a LoggingChannel in Windows 8.1 compatibility mode. Prefer the two-parameter constructor.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.Foundation.UniversalApiContract))]
public LoggingChannel(string name);
[Windows.Foundation.Metadata.Deprecated("This constructor creates a LoggingChannel in Windows 8.1 compatibility mode. Prefer the two-parameter constructor.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
public LoggingChannel(string name);
function LoggingChannel(name)
Public Sub New (name As String)

Paramètres

name
String

Platform::String

winrt::hstring

Nom du canal de journalisation.

Attributs

Remarques

Ce constructeur crée un LoggingChannel en mode de compatibilité Windows 8.1. Pour obtenir une description des différences entre Windows 8.1 mode de compatibilité et le nouveau comportement pris en charge par Windows 10, consultez LoggingChannel.

Windows 10 Ce constructeur ne doit être utilisé que si vous avez besoin d’une compatibilité avec Windows 8.1. Pour Windows 10 et versions ultérieures, utilisez LoggingChannel(String, LoggingChannelOptions) ou LoggingChannel(String, LoggingChannelOptions, GUID).

Voir aussi

S’applique à

LoggingChannel(String, LoggingChannelOptions)

Initialise une nouvelle instance de la classe LoggingChannel avec les options spécifiées.

public:
 LoggingChannel(Platform::String ^ name, LoggingChannelOptions ^ options);
 LoggingChannel(winrt::hstring const& name, LoggingChannelOptions const& options);
public LoggingChannel(string name, LoggingChannelOptions options);
function LoggingChannel(name, options)
Public Sub New (name As String, options As LoggingChannelOptions)

Paramètres

name
String

Platform::String

winrt::hstring

Nom du canal de journalisation.

options
LoggingChannelOptions

Options de canal. Passez la valeur Null pour spécifier les options par défaut.

Voir aussi

S’applique à

LoggingChannel(String, LoggingChannelOptions, Guid)

Initialise une nouvelle instance de la classe LoggingChannel avec les options et l’ID de canal spécifiés.

public:
 LoggingChannel(Platform::String ^ name, LoggingChannelOptions ^ options, Platform::Guid id);
 LoggingChannel(winrt::hstring const& name, LoggingChannelOptions const& options, winrt::guid const& id);
public LoggingChannel(string name, LoggingChannelOptions options, Guid id);
function LoggingChannel(name, options, id)
Public Sub New (name As String, options As LoggingChannelOptions, id As Guid)

Paramètres

name
String

Platform::String

winrt::hstring

Nom du canal de journalisation.

options
LoggingChannelOptions

Options de canal. Passez la valeur Null pour spécifier les options par défaut.

id
Guid

Platform::Guid

winrt::guid

Identificateur de canal à utiliser au lieu de l’identificateur généré automatiquement.

Voir aussi

S’applique à