다음을 통해 공유


LoggingChannel 생성자

정의

오버로드

LoggingChannel(String)

이 생성자는 Windows 8.1 호환 모드에서 LoggingChannel을 만듭니다.

LoggingChannel(String, LoggingChannelOptions)

지정된 옵션을 사용하여 LoggingChannel 클래스의 새 instance 초기화합니다.

LoggingChannel(String, LoggingChannelOptions, Guid)

지정된 옵션 및 채널 ID를 사용하여 LoggingChannel 클래스의 새 instance 초기화합니다.

LoggingChannel(String)

이 생성자는 Windows 8.1 호환 모드에서 LoggingChannel을 만듭니다.

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)

매개 변수

name
String

Platform::String

winrt::hstring

로깅 채널의 이름입니다.

특성

설명

이 생성자는 Windows 8.1 호환 모드에서 LoggingChannel을 만듭니다. Windows 8.1 호환 모드와 Windows 10 지원하는 새 동작 간의 차이점에 대한 설명은 LoggingChannel을 참조하세요.

Windows 10 이 생성자는 Windows 8.1 호환성이 필요한 경우에만 사용해야 합니다. Windows 10 이상에서는 LoggingChannel(String, LoggingChannelOptions) 또는 LoggingChannel(String, LoggingChannelOptions, Guid)을 사용합니다.

추가 정보

적용 대상

LoggingChannel(String, LoggingChannelOptions)

지정된 옵션을 사용하여 LoggingChannel 클래스의 새 instance 초기화합니다.

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)

매개 변수

name
String

Platform::String

winrt::hstring

로깅 채널의 이름입니다.

options
LoggingChannelOptions

채널 옵션입니다. null을 전달하여 기본 옵션을 지정합니다.

추가 정보

적용 대상

LoggingChannel(String, LoggingChannelOptions, Guid)

지정된 옵션 및 채널 ID를 사용하여 LoggingChannel 클래스의 새 instance 초기화합니다.

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)

매개 변수

name
String

Platform::String

winrt::hstring

로깅 채널의 이름입니다.

options
LoggingChannelOptions

채널 옵션입니다. null을 전달하여 기본 옵션을 지정합니다.

id
Guid

Platform::Guid

winrt::guid

자동으로 생성된 식별자 대신 사용할 채널 식별자입니다.

추가 정보

적용 대상