Resources  
  • Data Binding in AngularMar 23, 2024. Data binding serves as the communication bridge between the template (representing the view) and the component (housing the application's logic and data).
  • 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.
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only PropertiesMar 06, 2024. Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
  • Main Difference Between Method and Computed Property in Vue.jsMar 05, 2024. In Vue.js, methods and computed properties serve distinct roles. Methods are JavaScript functions invoked in response to events, while computed properties cache values based on dependencies, enhancing performance for derived data manipulation.
  • Explain Vue.js Computed PropertiesMar 04, 2024. Vue.js, a progressive JavaScript framework, provides developers with powerful tools to create dynamic and responsive web applications. One such tool that significantly enhances the reactivity of your Vue components is computed properties.
  • What are Properties in C#? Mar 04, 2024. In this article, we will learn about properties in C#, different types of properties, how to define and use them, and some best practices when working with properties in C#, properties in C# are a way to encapsulate data and provide controlled access to it.
  • What is Vue.js Watch Property?Feb 29, 2024. Learn Vue.js's watch property, a powerful feature allowing custom logic reactions to changes in data, computed properties, or reactive values. Utilize object-based and immediate watchers for efficient state management.
  • Mastering Pattern Matching in C#Feb 28, 2024. Mastering Pattern Matching in C# provides comprehensive insights into leveraging pattern matching techniques to enhance code readability and efficiency. From type patterns to constant patterns, property patterns, and more, this guide equips developers with the skills needed to write cleaner and more expressive C# code.
  • 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.
  • Creating Cohorts Using Custom Properties in Application InsightsFeb 27, 2024. In this article, we will learn how to leverage custom properties in Application Insights to create cohorts for in-depth user behavior analysis.
  • 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.
  • How to Generate a Popup Message Box in Power AppsFeb 16, 2024. This article guides us through implementing a popup message box in Power Apps for deleting gallery items. A standard gallery with a delete button is used. Clicking it triggers a confirmation alert. 'Delete' removes the item, 'Cancel' dismisses.
  • 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.
  • Azure Immersive Reader Technology - geting started!Feb 14, 2024. Using Azure Immersive Reader Technology to Help People Consume and Understand Text Based Information
  • Implementation of Collection View in .NET MAUIFeb 02, 2024. In this article, I will explain MAUI Collection View implementation using Visual Studio 2022. .NET MAUI Collection View is a view for presenting lists of data using different layout specifications. Collection View should be used for presenting lists of data that require scrolling or selection.
  • 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.
  • 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.
  • What Are the Different Ways to Create Filters in Vue.js Jan 16, 2024. In this article, we will learn about filters in Vue.js for formatting and transforming data in templates. Learn about global filters, local filters, inline filters, computed properties, and filter functions to enhance your Vue.js applications.
  • 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.
  • 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.
  • Understanding Dependency Injection in C#Dec 18, 2023. This article explores Dependency Injection (DI) in C#, explaining its types (constructor, property, and method injection) and demonstrating its implementation using a UserService and a SqlUserRepository for improved maintainability and testability.
  • 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.
  • Empowering Developers with .NET 8Nov 20, 2023. Step into the realm of .NET 8, the latest iteration of Microsoft's open-source platform that empowers developers to craft cutting-edge applications. With its focus on enhanced performance, cloud-native capabilities, and developer productivity, .NET 8 has revolutionized the way we build software.
  • 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
  • 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.
  • Design a Snake game in BlazorSep 22, 2023. The Snake Game, with its roots tracing back to the 90’s arcade era. Thanks to Blazor, Let's give this timeless gem a new home on your web browser.
  • ACID Properties in SQL ServerSep 18, 2023. ACID Properties in SQL Server ensure Data Integrity during a transaction.
  • Field vs Property in C#Sep 18, 2023. In C# object-oriented programming (OOP), distinguishing between "fields" and "properties" is fundamental. Fields directly store data, typically with private or protected access modifiers for encapsulation. They're ideal for managing an object's internal state. Properties, on the other hand, provide controlled access to fields via getter and setter methods, allowing validation and logic integration.
  • Dependency Injection in C# .NET With ExamplesSep 12, 2023. Discover Dependency Injection in C# .NET: Learn how to achieve flexible, maintainable, and loosely coupled code by decoupling components in your software. Explore constructor, property, and method injection with practical examples.
  • Understanding Vue.js Computed Properties Sep 04, 2023. Computed properties" is a core concept in Vue.js, a popular JavaScript framework for building user interfaces. Computed properties allow you to declare properties in your Vue components that are calculated based on other data properties. They provide a way to perform data manipulation and filtering in a declarative and efficient manner.
  • SQL Server ACID PropertiesSep 01, 2023. Understanding SQL Server ACID(Atomicity, Consistency, Isolation, Durability) Properties.
  • 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
  • JavaScript Symbols: Unique Identifiers and Private PropertiesAug 09, 2023. Explore the power and applications of JavaScript symbols. Learn about unique identifiers, private properties, iterators, and more. A comprehensive guide.
  • 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.
  • Creating Custom Properties in User Profiles in SharePoint OnlineJul 24, 2023. in this article you will be find how to create custom properties in user profile
  • 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!
  • How to Iterate Over JavaScript Object's Properties and Values?Jul 19, 2023. In this article, we will learn How to Iterate Over JavaScript Object's Properties and Values
  • Including And Excluding Properties from Model Binding Using the Bind Attribute Jul 06, 2023. Using the 'Bind' feature in ASP.NET MVC, you can include and exclude properties from model binding. You can specify which attributes should be included or excluded during model binding using the 'Bind' feature. To include particular characteristics during model binding, utilize the 'Include' property of the 'Bind' attribute. Here is one instance.
  • Including And Excluding Properties from Model Binding Using InterfacesJul 06, 2023. You can specify distinct interfaces for various sets of characteristics and have your model implement those interfaces if you want to include or omit certain properties from model binding. After that, you can bind your model to that interface type to decide which properties are added when the model is bound.
  • AutoMapper in ASP.Net Core 7 Web APIJun 15, 2023. When developing apps, it's common to wish to map items to either comparable or different kinds. Why do you frequently require this? The database tables of the employed database are typically mapped with the models (also known as entities) in an application. As a result, there is frequently a discrepancy between the model class properties and the data transfer object class properties. You may run into issues because of having to write a lot of boilerplate code to convert instances of disparate types. A large application, like an ERP, could require a lot of models and data transfer object classes. Writing code to perform the mapping manually would be time-consuming. Here, programs like AutoMapper can be useful.
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • What is Tracked Properties in Power AutomateMay 03, 2023. In this article, we will learn about what is Tracked Properties in Power Automate, how it is useful and how we can use it.
  • Static Methods Vs. Non-Static Methods In C#Apr 27, 2023. The difference between static and non-static methods in C#.
  • C# 12 Preview Features: Improving Productivity and PerformanceApr 17, 2023. C# 12 Preview Features: Improving Productivity and Performance
  • Get User Properties With “Get User Profile” Action In Power AutomateApr 11, 2023. This article explains how to retrieve a user's profile in Microsoft Power Automate using the "Get user profile (V2)" action from the "Office 365 Users" connector. This action provides user profile information in a JSON object that can be utilized in subsequent steps.
  • Get User Properties With Graph API In Power AutomateApr 10, 2023. In this article, you'll discover how to retrieve user profiles in Microsoft Power Automate using an HTTP request via the Graph API. Learn how to filter user profile information for a specific user based on their ‘user principal name’ or other parameters.
  • Power Automate - Send Notification With File Properties TableApr 07, 2023. In this article we will see how we can read the file properties of all the files in a folder of SharePoint online document library and send these properties in tabular format with custom CSS styling in email notification.
  • HTML Vs XML - Whats The Difference?Apr 06, 2023. In this article, you will learn about HTML vs XML.
  • Copy All Properties Of One Object Into Another Without Any Package In C#Mar 27, 2023. In this article we are going to map one object to another object which are same type and also different type. Some properties are exact same and some are different in case.
  • Power Apps - Fetch Image Property From Multi People Picker ColumnMar 27, 2023. In this article, you will learn about how to fetch image property from multi people picker column in Power Apps.
  • Power Apps - Fetch Image Property From Multi People Picker Column Based On Dropdown SelectionMar 27, 2023. In this article, you will learn how to fetch image property from multi people picker column based on dropdown selection.
  • 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.
  • What Is The Purpose Of The 'Prototype' Property In JavaScript?Mar 17, 2023. What is the 'prototype' property in JavaScript and how to use it in your web page.
  • Rekognition Managed Service In AWSMar 15, 2023. Rekognition is a comprehensive object recognition service which can also recognize text in images.
  • Navigator.online Property In JavaScriptMar 15, 2023. This article describes with an example whether the user is connected to the internet using navigator.online property in javascript.
  • A Comprehensive Guide to the CSS Gap Property: Improving Web LayoutsMar 07, 2023. Learn about the CSS Gap Property and how it simplifies adding space between elements. Discover how to use this powerful property to improve your code and fine-tune spacing. Check out our comparison with other similar properties and explore browser compatibility.
  • 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 Check If An Array Is Empty In C#Feb 01, 2023. In this article, we will explore various methods to determine if an array is empty in C#. The Length property, Count() extension method of LINQ or the IsNullOrEmpty() method can be used to check if the array is empty. If any of these methods return 0 or the array is null, it can be determined that the array is empty.
  • 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.
  • Using Change Tokens In .NET 7Jan 05, 2023. In this article, you will learn how to use change tokens in .NET 7.
  • Optical Character Reader Using PythonJan 03, 2023. In this article, we will learn about how to read text from Image using Python.
  • Understand Properties And Events Of Screens In PowerAppsDec 29, 2022. In this article, you will learn about properties and events associated with PowerApps screen.
  • Create Multiple Copies Of A Site Page, Rename And Update Properties Using Power Automate Dec 05, 2022. In this article, we will learn to create multiple copies of a SharePoint site page, rename and update its properties using Power Automate "Send an HTTP request to SharePoint" action.
  • Blazor Data And Property BindingNov 23, 2022. I will explain how the data binding works in Blazor. We can bind data both one-way and two-way in Blazor.
  • 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.
  • 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
  • Updating List Properties Using Flow Sep 01, 2022. In this article, you will learn how to update list properties using Flow based on another list
  • Get Current User Profile Properties In SPFx Webpart Using MS Graph APIAug 25, 2022. In this article I have explained how to get the current user profile properties in your SPFx webpart using Microsoft Graph API
  • Configuration Of A MicroserviceAug 22, 2022. In this article, you will learn about the configuration of a Microservice.
  • 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.
  • External REST API Call from SPFx WebPart with Changeable PropertiesJul 16, 2022. Anonymous REST API Call from SPFx React WebPart with properties from web part
  • Get Started With OOPS In Flutter 😎Jul 13, 2022. Here cover some interesting topics like inheritance, abstract classes and computed properties.
  • CSV Reader - How To Quickly Change Field Delimiter In CSV DocumentJul 04, 2022. This article explains how to quickly change field delimiter comma , in RFC 4180 standard CSV document, to any other selected like semicolon.
  • Dynamic CSS Values In BlazorMay 13, 2022. This article explains how to apply dynamic values on css for blazor components.
  • 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. 
  • Properties In C# .NetApr 28, 2022. In this article, you will learn about Properties In C#.
  • How To Handle Nullable Reference In .NET 6Apr 18, 2022. As we know there are so many changes in .Net 6 and C# 10. This article describes one of the changes in C#10 on writing properties and objects of a class with an example.
  • 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.
  • Solution - Non-nullable Property Must Contain a Non-null Value in .NET 6Jan 15, 2022. Non-nullable property must contain a non-null value when exiting constructor. Consider declaring the property as nullable
  • Convert JSON And XML Object Into Class Using Visual StudioJan 11, 2022. In this article, we are going to explore about how to convert a JSON/XML object into the classes using Visual Studio.
  • Working With CSV In PythonDec 16, 2021. In this article, you will learn about CSV In Python.
  • FOR XML In SQL SeverDec 02, 2021. In this article, we are going to discuss FOR XML Path Clause in SQL Server.
  • Usage Of XML Function In Power AutomateOct 28, 2021. In Power Automate, at times we must work on strings which have XML values. We can use XML function in power automate to convert string value to XML and perform related operations. As an example, notification xml string is used here to send notification to required person.
  • Xamarin.Forms - Create Properties Using Fody in MVVMOct 27, 2021. In this article, you will learn how to use Fody in MVVM in Xamarin.Forms App
  • Get All Columns in a Table Schema Information In One ClickJul 22, 2021. Get Table All Columns Schema Information in One Click In this article, I will show how we can get table columns information like ColumnName, DataType, DataType Length, is mandatory, and column brief description
  • Get XML Data From SP Library And Upload To SP List - JavaScriptJul 03, 2021. In this article, you will learn how to get XML Data from SharePoint Library & Upload to SharePoint List - JavaScript REST API.
  • Implementation Of ListPicker And Associated FieldPicker In Property Pane Of SPFx⚓Jun 15, 2021. In this article, you will learn how to implement ListPicker and Associated FieldPicker in Property Pane of SPFx?.
  • Conditional Properties Using React With TypeScriptJun 14, 2021. In this article, you will learn about conditional properties using React with TypeScript.
  • Sync Azure Active Directory Properties With Office 365 User Profile Using PowerShellJun 01, 2021. In this article, we will see how can we sync properties of Azure Actie Directory with Office 365 use profile.
  • Forms Authentication (A), Using XMLMay 03, 2021. This article discuss Forms Authentication by using XML
  • Export Data In EXCEL, PDF, CSV, Word, JSON, XML And Text File In .NET Core 3.1 Using MVC CoreApr 12, 2021. This article demonstrates how to export functionality with different types of file formats like excel, pdf, word, csv, json, xml and text files using a .net core 3.1 application. I have implemented the most frequently used file format to export data in real time projects.
  • Working With SPFX Property PaneApr 03, 2021. In this article, you will learn how to Work with Spfx Property Pane.
  • Properties, Methods And Events Of DataSet Class In ADO.NETMar 11, 2021. In this article, you will learn Properties, Methods and Events of DataSet Class in ADO.NET

About xml-Reader-properties

NA

OUR TRAINING