EnableAllNotifications() 공개 메소드

public EnableAllNotifications ( ) : void
리턴 void
예제 #1
0
        btnEnableAllNotifications_Click
        (
            object sender,
            EventArgs e
        )
        {
            AssertValid();

            NotificationUserSettings oNotificationUserSettings =
                new NotificationUserSettings();

            oNotificationUserSettings.EnableAllNotifications();
            oNotificationUserSettings.Save();
        }
예제 #2
0
    btnEnableAllNotifications_Click
    (
        object sender,
        EventArgs e
    )
    {
        AssertValid();

        NotificationUserSettings oNotificationUserSettings =
            new NotificationUserSettings();

        oNotificationUserSettings.EnableAllNotifications();
        oNotificationUserSettings.Save();
    }