Microsoft Announces the Azure Firewall Premium general availability

Azure Firewall Premium is a cloud-based, managed network security service that offers next generation firewall(NGFW) capabilities that protects Virtual Network resources of Azure. It offer key factors that are required for highly sensitive and regulated environments. With the new Azure Firewall Premium, the Key features in this release include: TLS Inspection: Azure Firewall Premium terminates outbound and east-west TLS connections. […]

Get members from Office 365 Azure Ad using Graph API

1.Create a WPF application 2. Add the below mentioned code in the App.xaml.cs page. [code lang=”c”] private static string ClientId = “0b8b0665-bc13-4fdc-bd72-e0227b9fc011″; private static PublicClientApplication _clientApp ; public static PublicClientApplication PublicClientApp { get { return _clientApp; } } static App() { _clientApp = new PublicClientApplication(ClientId); }[/code] 3.In mainwindow.xaml Add a button for calling the graph and a multiline textbox to […]