Posts

Showing posts with the label Windows

Toast Notification message In UWP

Image
In UWP - Universal Windows Platform application sent Toast Notification content two ways one is Html content and another one was XML Content. It was support windows 8.1 onwards Systems. In Toast message with use Buttons and Images and sound.    Toast Message is very effective and comforts to sent messages to all. It sent multiple people at the same time. The client also replies to that notification. Notification design is suitable for the latest Technology. default stand time is 5 seconds and will increase 25-30 seconds. This Article Shows three types of Toast message. Simple Notification Toast With Button Textbox Message Sent. Header     install packages from NuGet. using Windows.Data.Xml.Dom; using Windows.UI.Notifications; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; Design XAML < Page x : Name ="Notification"     x : Class ="App.MainPage"     xmlns ="http://schemas.micros...

Developing Cross platform Desktop Application Development - Ver 1

Image
Hi Guys,    In this article about Cross-platform desktop application development using Visual studio core or Xamarin studio. first, understand your requirements and what are technology will support your requirements. Right now I faced this type of issue. The client asks me to develop a single code that works with Windows and Mac, Linux systems.  First clear If you're Developing  Cross Application Console application Cross Application UI Application Cross Desktop Console application supports easily. the only prob is supported with UI Desktop Application.     First, I go with UWP - Universal Windows Platform  this is new feature comes in Windows 10.  in your visual studio above the 2017 version, it was support to develop. in this UWP platform developed applications can use Windows Systems, Windows Mobiles, IoT Devices, Xbox, Surface Hub, and Holo Lens. in UWP can use Xaml Code for Design the View.     The...

How To Install C# Windows Service in System?

Image
Actually, We Did not Run the Windows Service Like Windows Application. Its Service Based So Run this Windows Service using    InstallUtil . exe.   It's the Installer Tool. Using Command prompt to Install Service Any Windows System. Use the Following Code to Install. C:\Users\Dinesh>"C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil.exe" "E:\ActiveProcess\ActiveProcess\bin\Release\ActiveProcess.exe"

How to Get ADFS SAML Response in C#

     ADFS  For  Active Directory Federation Services which can Installed on IIS Server. We Will See About How To Configure ADFS in IIS SERVER. ADFS is One of The  Single Sign-On Technology from Microsoft.         After Configured Login Process Held on Central ADFS Server to Your Own Post Page. You Can Configure that Post Page which Control Method's Comes The ADFS Response.         ADFS Response is Secured and Encrypted. Do Not Take Information Without Decrypt the Response. ADFS Response like Locked Home, If Need To open the Door We Need to use Key(Certificate) then Break the Latch(ADFS Response). In this Section How to Decrypt ADFS Response Process Explained Detaily.       ADFS Response: <samlp:Response Consent= "urn:oasis:names:tc:SAML:2.0:consent:unspecified"     Destination= "https://example.com/adfsauthlogin/login"     ID= "_73cad836-4090-4...