다음을 통해 공유


ToastNotificationHistory.Remove 메서드

정의

오버로드

Remove(String)

알림 센터에서 지정된 태그 레이블이 있는 개별 알림을 제거합니다.

Remove(String, String)

알림의 태그 및 그룹 레이블을 사용하여 작업에서 알림 메시지를 제거합니다.

Remove(String, String, String)

태그 레이블, 그룹 레이블 및 앱 ID의 조합으로 식별되는 알림 센터에서 개별 알림 메시지를 제거합니다.

Remove(String)

알림 센터에서 지정된 태그 레이블이 있는 개별 알림을 제거합니다.

public:
 virtual void Remove(Platform::String ^ tag) = Remove;
/// [Windows.Foundation.Metadata.Overload("Remove")]
void Remove(winrt::hstring const& tag);
[Windows.Foundation.Metadata.Overload("Remove")]
public void Remove(string tag);
function remove(tag)
Public Sub Remove (tag As String)

매개 변수

tag
String

Platform::String

winrt::hstring

제거할 알림 메시지의 태그 레이블입니다.

특성

설명

이 오버로드를 사용하여 앱의 알림 메시지 분류 시스템이 태그만 사용하여 빌드된 경우 알림을 제거해야 합니다.

추가 정보

적용 대상

Remove(String, String)

알림의 태그 및 그룹 레이블을 사용하여 작업에서 알림 메시지를 제거합니다.

public:
 virtual void Remove(Platform::String ^ tag, Platform::String ^ group) = Remove;
/// [Windows.Foundation.Metadata.Overload("RemoveGroupedTag")]
void Remove(winrt::hstring const& tag, winrt::hstring const& group);
[Windows.Foundation.Metadata.Overload("RemoveGroupedTag")]
public void Remove(string tag, string group);
function remove(tag, group)
Public Sub Remove (tag As String, group As String)

매개 변수

tag
String

Platform::String

winrt::hstring

제거할 알림 메시지의 태그 레이블입니다.

group
String

Platform::String

winrt::hstring

제거할 알림 메시지의 그룹 레이블입니다.

특성

설명

이 오버로드를 사용하여 태그 및 그룹을 사용하여 앱의 알림 메시지 분류 시스템을 빌드할 때 알림을 제거해야 합니다.

추가 정보

적용 대상

Remove(String, String, String)

태그 레이블, 그룹 레이블 및 앱 ID의 조합으로 식별되는 알림 센터에서 개별 알림 메시지를 제거합니다.

public:
 virtual void Remove(Platform::String ^ tag, Platform::String ^ group, Platform::String ^ applicationId) = Remove;
/// [Windows.Foundation.Metadata.Overload("RemoveGroupedTagWithId")]
void Remove(winrt::hstring const& tag, winrt::hstring const& group, winrt::hstring const& applicationId);
[Windows.Foundation.Metadata.Overload("RemoveGroupedTagWithId")]
public void Remove(string tag, string group, string applicationId);
function remove(tag, group, applicationId)
Public Sub Remove (tag As String, group As String, applicationId As String)

매개 변수

tag
String

Platform::String

winrt::hstring

제거할 알림 메시지의 태그 레이블입니다.

group
String

Platform::String

winrt::hstring

제거할 알림 메시지의 그룹 레이블입니다.

applicationId
String

Platform::String

winrt::hstring

지정된 알림 메시지를 보낸 앱의 앱 ID입니다. 이 앱은 이 제거 요청을 만드는 앱과 동일한 앱 패키지의 일부여야 합니다.

특성

설명

applicationId 매개 변수에 지정된 대로 이 오버로드를 사용하여 앱 패키지의 특정 앱에 대한 알림을 제거해야 합니다. 앱에서 태그만 사용하는 경우 그룹 매개 변수에 대해 빈 문자열을 전달할 수 있습니다.

추가 정보

적용 대상