ToastNotificationHistory.RemoveGroup Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RemoveGroup(String) |
Removes a group of toast notifications, identified by the specified group label, from action center. |
RemoveGroup(String, String) |
Removes a group of toast notifications sent by the another app inside the same app package from action center using the group label. |
RemoveGroup(String)
Removes a group of toast notifications, identified by the specified group label, from action center.
public:
virtual void RemoveGroup(Platform::String ^ group) = RemoveGroup;
/// [Windows.Foundation.Metadata.Overload("RemoveGroup")]
void RemoveGroup(winrt::hstring const& group);
[Windows.Foundation.Metadata.Overload("RemoveGroup")]
public void RemoveGroup(string group);
function removeGroup(group)
Public Sub RemoveGroup (group As String)
Parameters
- group
-
String
Platform::String
winrt::hstring
The group label of the toast notifications to be removed.
- Attributes
See also
Applies to
RemoveGroup(String, String)
Removes a group of toast notifications sent by the another app inside the same app package from action center using the group label.
public:
virtual void RemoveGroup(Platform::String ^ group, Platform::String ^ applicationId) = RemoveGroup;
/// [Windows.Foundation.Metadata.Overload("RemoveGroupWithId")]
void RemoveGroup(winrt::hstring const& group, winrt::hstring const& applicationId);
[Windows.Foundation.Metadata.Overload("RemoveGroupWithId")]
public void RemoveGroup(string group, string applicationId);
function removeGroup(group, applicationId)
Public Sub RemoveGroup (group As String, applicationId As String)
Parameters
- group
-
String
Platform::String
winrt::hstring
The group label of the toast notifications to be removed.
- applicationId
-
String
Platform::String
winrt::hstring
The app ID of the app within the same app package of the calling app.
- Attributes