Resources  
  • Content Negotiation in .NET Core Web APIJul 11, 2024. Content negotiation in REST APIs allows clients to specify their preferred response format (e.g., JSON or XML) using HTTP headers like Accept and Content-Type. ASP.NET Core Web API supports this with built-in JSON support and customizable formatters for XML and other formats.
  • Creating a complete CRUD (Create, Read, Update, Delete) application in Angular Jul 10, 2024. Build a CRUD application in Angular using Angular CLI for setup, components for UI, services for data management with HttpClient for API interactions. Implement CRUD operations (Create, Read, Update, Delete) with a Todo model, integrating JSON Server for backend simulation.
  • Understanding View Binding in AndroidJul 09, 2024. View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module. An instance of a binding class contains direct references to all views that have an ID in the corresponding layout.In most cases, view binding replaces findViewById
  • Understanding LINQ While Writing Your OwnJul 03, 2024. LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where, Select, and GroupBy, supporting both query and method syntax.
  • How to Convert varbinary to Base64 String in SQL ServerJul 03, 2024. Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for web applications needing text-based transmission of images and files.
  • Copying Footers Between SharePoint Sites Using PnP PowerShellJun 24, 2024. I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
  • Microsoft Reading Coach(Preview): Revolutionizing Rading PracticeJun 21, 2024. Discover Microsoft Reading Coach (Preview), a groundbreaking tool revolutionizing reading practice. Using AI and interactive learning tools, it transforms educational experiences by enhancing reading skills.
  • Learn CRUD Operations in SQL Server with Real-World ExamplesJun 21, 2024. CRUD represents the four basic operations: Create, Read, Update, and Delete, essential for managing persistent data in SQL Server. The Create operation involves adding new records to a table using the INSERT INTO statement. The Read operation retrieves existing records from a table using the SELECT statement.
  • Using C# and OpenXML to Read Large Excel FilesJun 18, 2024. Learn how to efficiently read large Excel files using C# and OpenXML in this comprehensive guide. Explore techniques to handle big data within Excel, leveraging the power of OpenXML SDK for performance optimization.
  • Enhancing Reading Comprehension with Azure AI Immersive ReaderJun 17, 2024. In today's digital age, reading and comprehension skills are essential for success in both personal and professional realms. However, individuals of all ages and abilities often face challenges in reading comprehension.
  • The Art of JavaScript Hoisting: Understanding the Ins and OutsJun 11, 2024. Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
  • Web APIJun 11, 2024. A Web API (Application Programming Interface) enables applications to communicate over the internet. Using protocols like HTTP and data formats such as JSON and XML, Web APIs facilitate interaction between different software systems.
  • Convert an Embedded Resource into an XML File in WPF C#Jun 06, 2024. When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
  • WADL vs WSDL: The Battle of Web Service DescriptorsMay 30, 2024. Explore the significance and evolution of WSDL and WADL in web service description. WSDL, tailored for SOAP-based services, contrasts with WADL, simpler and geared towards RESTful services. While WSDL enjoys broader adoption, WADL's simplicity attracts developers in REST contexts.
  • 😇How the Compiler Reads Your Code?May 13, 2024. C# compilation, from syntactic and semantic analysis to optimization techniques. Learn how the Common Language Runtime (CLR) executes compiled code and discover the role of the Just-In-Time (JIT) compiler.
  • Deciding the Right Data Reading Architecture in .NETMay 11, 2024. In the dynamic realm of .NET development, choosing the right data reading architecture is paramount for application performance, scalability, and maintainability. Let's delve into practical examples of ADO.NET, Entity Framework, Dapper, and GraphQL to grasp their strengths and weaknesses.
  • How to Integrate Instant Plugins in the Canvas App?Apr 29, 2024. Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
  • Learn JSX and React ComponentsApr 03, 2024. A brief idea about the JSX and React Components.
  • How to Mark an Email as Read When Logic App Performs an ActionMar 18, 2024. Azure Logic Apps streamline business processes by automating workflows between various services without coding. Follow steps to create workflows for tasks like moving email attachments to Blob Storage and more.
  • Creating Custom NuGet Packages in C#Mar 10, 2024. Learn how to create custom NuGet packages in C# with this step-by-step guide. Set up a project, add components, create a .nuspec file, package your project, and optionally publish to nuget.org.
  • How Do I Open an OCR File in PDF?Mar 05, 2024. Explore methods to open OCR files in PDF. Get the best guides to open an OCR file in PDF with easy steps. Open OCR PDF files in C# using the iTextSharp library. Install iTextSharp, write C# code to extract text, and run the code for OCR PDF processing.
  • How to Open a PSD File Without PhotoshopMar 02, 2024. Explore methods to open a PSD File without Photoshop. Get the program to open a PDF file without Photoshop using C#.
  • How to Open, Read or View MS SQL Error Log FileFeb 29, 2024. Explore methods to open, read, or view SQL Server Error Log File. Get the best solution to open or view the SQL Server Log File of MS SQL Server in easy steps.
  • How to Read or View Exchange Database EDB File ProgrammaticallyFeb 28, 2024. Explore methods to Read or View the Exchange Database EDB File Programmatically. Know how to use this Exchange Server Managed API to View or Read Exchange EDB files.
  • Customize Your Office Installer Using Office Deployment ToolsFeb 28, 2024. Customize your Microsoft Office installer effortlessly with Office Deployment Tools. Tailor settings, configurations, and deployment strategies to fit your organization's needs using command-line options and XML configuration for seamless setup.
  • D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShellFeb 20, 2024. Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned for internet script execution.
  • Android Responsive Login Screen Design using Constraint LayoutFeb 16, 2024. In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
  • Data Vault Design in Azure SQL - Read PII with Customer KeysFeb 05, 2024. Data Vault design in Azure SQL - Utilizing Customer keys to read PII information in databases. Ensuring data security in the cloud era is crucial, especially with the rise in data attacks. Protecting Personally Identifiable Information (PII) is paramount during cloud migration.
  • Visual Studio Feature: Convert JSON or XML to ClassesJan 30, 2024. In this article, I will demonstrate how to use the Visual Studio feature Paste JSON as Classes or XML as Classes. This feature was introduced in Visual Studio 2013. This compelling feature will help the developer convert JSON to a C# class or XML to a C# class.
  • Using XML Key-Value Pairs in C# as a DictionaryJan 30, 2024. To represent key-value pairs in XML, you typically use elements and attributes. how to represent key-value pairs in XML using C#. It covers XML file creation, interface and enum implementation, and methods for getting and setting values in an XML file. The example includes a WPF application for interaction.
  • DropDown List Using XML in ASP.Net C#Jan 11, 2024. The first dropdown, "ddldist," displays district names, and the second dropdown, "ddltaluka," displays taluka names based on the selected district. The C# code uses the Page_Load method to load district data on the initial page load. The ddldist_SelectedIndexChanged method handles the district selection, filtering, and populating of the taluka dropdown accordingly. The XML files "District.xml" and "Taluka.xml" store the district and taluka data, respectively.
  • Ref Readonly Parameters in C# 12Jan 03, 2024. C# 12 unveils a hidden gem: ref readonly parameters. This article delves beyond the surface, offering a deep dive into their benefits, usage patterns, and how they differ from familiar options like ref and in. Embrace their power for safer, clearer, and more efficient code. In the current digital era, we try to de-couple applications from one another so it is supposed to adapt to plug it in another version or another application easily.
  • ASP.Net Core - How to Read values from Appsettings.jsonDec 31, 2023. Asp.Net Core – How to Read values from Appsettings.json
  • How To Invoke SOAP Web Service in MuleSoftDec 24, 2023. In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
  • Read in React.js CRUD OperationsDec 21, 2023. Explore the pivotal role of "Read" in React.js CRUD operations with insights into MVC architecture, MERN/MEN stacks, and the "View" in React. Dive into state management, Axios data fetching, and practical mapping techniques. The article includes a downloadable source code zip for Node.js API and React.js, catering to self-learners.
  • Read and Import Data from PDF File using MSFT FabricDec 04, 2023. Read and Import Data from PDF File using MSFT Fabric.
  • Reading properties of an object in C#Nov 26, 2023. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metadata at runtime, providing flexibility but with potential performance drawbacks. On the other hand, the dynamic keyword allows for late-binding, bypassing static type checking, but may result in runtime exceptions and relies on the Dynamic Language Runtime (DLR). The choice between reflection and dynamic depends on specific needs and scenarios.
  • How to Trigger Service Bus using Azure Function?Nov 15, 2023. In this article, we will learn how to trigger service bus queue using azure function.
  • Get XML element value Action in Desktop flow using Microsoft Power AutomateNov 03, 2023. Reading this article, you can learn how to Get XML element value in Desktop flow using Microsoft Power Automate.
  • Write XML to File Action in Desktop Flow using Microsoft Power AutomateOct 31, 2023. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate.
  • Read XML From File Action in Desktop Flow using Microsoft Power AutomateOct 30, 2023. Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
  • Read And Upload Excel Data To Oracle TableOct 18, 2023. In the realm of data management and integration, the process of reading and uploading Excel data to an Oracle table involves multiple fundamental steps. First, the data needs to be read from an Excel file, which might contain various types of information such as numbers, texts, or dates. This data is typically organized in rows and columns.
  • Data Reading From AWS Kinesis Data StreamOct 16, 2023. Data Reading from AWS Kinesis Data Stream involves the real-time retrieval and processing of streaming data within the Amazon Web Services (AWS) Kinesis ecosystem. This process allows seamless integration and analysis of continuous data streams, enabling businesses to gain insights and make decisions in real time based on the incoming data flow.
  • How To Render Avatar Images From XML Data In Blazor?Oct 11, 2023. In this scenario, you'll need to read XML data, parse it, and then render avatar images inside a popup component in a Blazor application. This involves creating a data model, a service to handle XML parsing, and a component to display the avatars in the popup.
  • Reading Zip Files with SharpZip Library in .NETOct 03, 2023. SharpZipLib is a library for .NET that allows working with compressed files, particularly ZIP archives. To read a ZIP file using SharpZipLib, you first install the library and import the necessary namespaces. Then, you open the ZIP file using a `ZipFile` object, access its entries (files or folders), and process the entry data according to your application's needs. Finally, ensure to close the ZIP file properly to release associated resources.
  • MVC Architecture With Node.js CRUD Application [Node.js-Express-MongoDB]Aug 31, 2023. MVC Application- CRUD operations (create, read, update, and delete) Using [Node.js-Express-MongoDB].
  • Exploring the Diverse Flavors of LINQ with ExamplesAug 22, 2023. LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
  • Implementing AJAX for Editing Data and Updating the Database in ASP.NET MVCAug 07, 2023. Implementing AJAX for editing data and updating the database in ASP.NET MVC allows you to enhance the user experience and responsiveness of your web application. AJAX (Asynchronous JavaScript and XML) enables seamless data retrieval and updates without requiring a full page reload, resulting in faster and more interactive user interactions.
  • Converting Strings in C#: JSON, Base64, XML, CSV and ReverseJul 19, 2023. Discover Ziggy Rafiq's comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don't miss out on this must-read article!
  • Create, Read, Update, and Delete (CRUD) with ASP.NET CoreJun 22, 2023. This article introduces developer to the Create, Read, Update, and Delete (CRUD) using ASP.NET Core and Razor pages
  • CMD Session action in Desktop flow using Microsoft Power AutomateJun 21, 2023. Reading this article, you can learn how to execute the windows commands, Using Open CMD session action, Read from CMD session, Write to CMD session action and Close CMD session action with Desktop flow in Microsoft Power Automate.
  • NCache and Caching Patterns: Full Cache, Cache Aside, and Read-Through CachingJun 13, 2023. From this article, you will learn about NCache and Caching patterns like Full Cache, Cache Aside, and Read-Through Caching.
  • Pagination in DynamoDB: Efficient Data ReadingJun 12, 2023. This article will explain the Pagination in DynamoDB: Efficient Data Reading.
  • Read Files Using File Connector in MuleSoftMay 10, 2023. In this article we will learn how to Read Files Using File Connector in MuleSoft.
  • String Operations in Rust: A Beginner's GuideMay 08, 2023. In this article we learn about how to perform string operations in Rust, including reading, manipulating, and transforming strings, through a variety of examples
  • Working with Files in Python: Reading, Writing and AppendingApr 18, 2023. Working with Files in Python: Reading, Writing and Appending
  • HTML Vs XML - Whats The Difference?Apr 06, 2023. In this article, you will learn about HTML vs XML.
  • Read & Update Smartsheet Data Using C# Console ApplicationMar 29, 2023. In this article, we will see how you can read the data from Smartsheet from a C# console application. This is required when we are building a system where we need some data from Smartsheet to process further functionalities of the integrated system.
  • How To Read Excel File In Next JS ApplicationMar 27, 2023. In this article, we learn how to read Excel file in React JS application.
  • Include XML Comments In Swagger under ASP.NET Core 2.2Mar 22, 2023. In this article, you will learn how to include XML Comments in Swagger under ASP.NET Core 2.2.
  • Multiple Views And Access To XML Files With .NET For iOSMar 21, 2023. You will learn how to build an iPhone app using multiple views, recording, and extract data of XML files, using .NET for iOS and the XCode Interface Builder.
  • How To Read And Write Data From Dynamics 365 F & O Using API From Power Automate Flow?Mar 10, 2023. This article shows how to read and write data from Dynamics 365 F & O using API from Power Automate Flow
  • Code Quality - Formatting Classes In Microsoft .NET To Make Them Easy To Read And ModifyMar 01, 2023. In this article, you will learn how to format classes in Microsoft .NET To Make Them Easy To Read And Modify.
  • XML Serialization in practice: Preparing The Central Bank ServiceFeb 17, 2023. Learn XML serialization in practice. In the second part of our article, we will get acquainted with XML serialization and look at the use of the Central Bank's XML service in real practice.
  • Create Lookup Field In Existing SharePoint List Using REST API Schema XMLFeb 06, 2023. In this article, we will learn how to create lookup field in existing SharePoint list using REST API and schema XML. The REST API enables us to communicate with SharePoint using standard HTTP methods, such as GET, POST, PUT, and DELETE. The API provides access to various SharePoint entities including lists, libraries, and sites, allowing us to retrieve data, create and update lists, fields, items, upload files and manage user permissions.
  • How To Read Files From S3 Bucket Using Lambda Function And PythonJan 24, 2023. In this article, you will learn how to read the file from S3 bucket and return the JSON response using Lambda function with Python.
  • Using XML Comments As Web API Documentation With SwaggerJan 18, 2023. This article demonstrage how to use C# XML Comments as a Web API documentation with Swagger.
  • Reading Data From JSON In SQL ServerJan 11, 2023. This article describes how to read data from a JSON string
  • PNP PowerShell - Read Excel File And Add Bulk Data Into SharePoint List Dec 22, 2022. In this article, you wil learn how to read Excel File and Add Bulk Data into SharePoint List.
  • How To Read CSV File Using C#Nov 14, 2022. This article demonstrates how to read Excel files using Microsoft's Interop Excel library in a C# Windows application. It covers adding references, handling file extensions, and displaying Excel data in a DataGridView.
  • Convert XML Files Data To List Of ObjectNov 13, 2022. In this blog, we learn how to get all XML files from a specific location and convert it's data into the C# object.
  • How To Read And Write To Microsoft SQL Using Python REST API Nov 07, 2022. In this article, you will learn how to read Microsoft SQL table, insert the results to another SQL table using Python REST API.
  • Read Microsoft SQL Table And Send The Results As Rest API JSON Response Using PythonOct 31, 2022. In this article, you will learn how to read Microsoft SQL table and send the results as REST API JSON response using Python.
  • How to Read Barcode in Word, Excel, PowerPoint or PDF Documents in JavaOct 18, 2022. In this article, you will learn how to read barcode from MS office documents and PDFs in Java by using Spire.Office for Java library.
  • How To Update List Items With Elevated Access To Read-only Content Using Power AutomateOct 10, 2022. In this article, we will learn how to update SharePoint list items with elevated access when the logged-in user doesn’t have access to update the content.
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • Improving The Fetch XML Performance In Dynamics CRMSep 20, 2022. The articles shares the information and steps to improvise the performance of FetchXML query in DataVerse
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • Read Email Using C#Aug 08, 2022. In this article, you will learn how to read Email using C#.
  • How To Read Data From An Excel SheetAug 03, 2022. In this article, you will learn how to read data from an excel sheet using C#.
  • Rock Your Code: XML Documentation Of Code For Microsoft .NETJul 27, 2022. In this article, you will learn about XML Documentation of code for Microsoft .NET.
  • XML Shredding In T-SQLJul 19, 2022. In this article, you will learn about XML shredding in T-SQL.
  • Make All Form Fields As Read-Only With Webresource In Dynamics CRMJul 16, 2022. During certain scenarios we must make all CRM form fields as read-only. To achieve this functionality explicit logic should be written using JavaScript with form controls that are available on the form. Contact form was used to show this functionality.
  • How To Add Custom Add-Ins To ExcelJul 05, 2022. In this article, you will learn how to add Excel add-ins.
  • How To Deploy PowerPoint Add-ins To Your OrganizationJun 15, 2022. This article shows you, how to deploy PowerPoint add-ins.
  • How To Deploy Word Add-Ins To Your OrganizationJun 03, 2022. This article show you how to deploy word add-ins to your organization.
  • Read Excel File Using Microsoft Interop LibraryJun 02, 2022. In this article, you will learn how to read excel file using microsoft interop library.
  • How To Handle Files Through PythonMay 16, 2022. Nowadays python has emerged as a totally famous and effective language due to its excellent overall performance and huge variety of features by which we are able to use Python in various fields inclusive of gadget studying, picture processing, web designing, 3-D objects, GUI based computer packages, medical computation, video games, OS, making another language and community programming.
  • How To Create Excel Add-Ins?May 10, 2022. Create an Excel add-in using HTML, CSS, JavaScript, or C# to enhance functionality across various platforms, including Excel for Windows, Mac, and Office 365. Install Yeoman and the generator-office globally, generate a project, and run it using npm commands. Test your add-in in Excel’s Home Tab.
  • Saving And Fetching Data In CoreDataMay 09, 2022. This article is about saving and fetching data in CoreData.
  • String.XML In AndroidMay 09, 2022. In this article, you will learn about String.XML in Android.
  • Using For XML Clause In SQL QueriesMay 05, 2022. For XML clause is used to convert the SQL result set into XML format. It is a very much helpful clause when we need XML data from the SQL result set. The FOR XML clause can be used in top-level queries and in subqueries. The top-level FOR XML clause can be used only in the SELECT statement. In sub queries, FOR XML can be used in the INSERT, UPDATE, and DELETE statements. 
  • Retrieve Data Using FetchXMLWebAPI With Webresource In Dynamics CRMApr 07, 2022. In Dynamics 365 CRM, for certain requirements data needs to be retrieved to achieve business functionality. As an example, all contact records whose first name starts with V taken for explanation.
  • How To Read Column From CSV File In PowerShellApr 04, 2022. In this article, we are going to learn how to read a column from CSV file in PnP PowerShell.
  • How To Create PowerPoint Add-InsApr 04, 2022. in this article, I will show you how to create PowerPoint Add-ins
  • How To Deploy Outlook Add-ins To Your OrganizationMar 19, 2022. This article provides a comprehensive guide on deploying Outlook add-ins to organizations for other users. It covers the step-by-step process of deploying add-ins using Office 365, ensuring easy access for users within the organization.
  • How To Publish Outlook Add-Ins Using Visual Studio CodeMar 17, 2022. In this article, you will learn how to publish outlook add-ins using visual studio code.
  • How To Create Word Add-InsMar 16, 2022. This article outlines the steps to create and run a Word add-in using technologies like HTML, CSS, JavaScript, and C#. Word add-ins enhance functionality and work across platforms, including Windows, Mac, and Office 365.
  • How To Read JSON File And Display In A Table Using PHPFeb 24, 2022. In this article, will discuss about how to read a JSON file and display the details in table format using PHP.

About read-XML-in-Silverlight

NA

OUR TRAINING