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).
  • Learn about Asynchronous Events in C#Mar 20, 2024. Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Ideal for intermediate C# programmers seeking to optimize event-driven applications.
  • Creating Funnels Using Custom Events in Application InsightsMar 07, 2024. Learn to add custom events to a simple .NET application's telemetry and then use these events to create funnels that identify users who complete a specific sequence of steps in your application.
  • How to Detect Event on Clicks Outside in Vue.jsMar 07, 2024. Detecting clicks outside an element in Vue.js is crucial for scenarios like closing dropdown menus or modals. This guide provides a step-by-step process, ensuring efficient handling of such events.
  • Power of Typescript Scroll EventsMar 06, 2024. The onscroll event in JavaScript is a powerful tool that gets triggered when a scrollbar is used for an element. This event is particularly useful for creating dynamic and interactive web experiences, allowing developers to respond to user interactions with scrolling.
  • Master Scroll Events: ECMAScript 8 (ES8) and TypeScriptMar 05, 2024. We'll explore how to adapt and extend the scroll event examples using ECMAScript 8 (ES8) features and the TypeScript language. These advanced techniques provide developers with additional tools and benefits for handling scroll events in modern web development.
  • Disable Right Click Directive in Vue.jsMar 05, 2024. In Vue.js, disable right-click functionality by creating a custom directive. Bind an event listener to contextmenu, preventing its default behavior. Easily implement this directive for specific elements in your templates.
  • Vue.js Custom Events: Enhance Parent-Child Communication with $emit()Mar 01, 2024. Vue.js, with its powerful reactivity system, allows seamless communication between parent and child components. While props enable data flow from parent to child, the $emit() method serves as a bridge for sending information from the child back to the parent.In this comprehensive guide, we will explore the intricacies of Vue.js custom events, focusing on the application of the $emit() method to create dynamic and interactive user interfaces.
  • How to Communicate from Child to Parent Using Events in Vue.jsFeb 27, 2024. In Vue.js, child components can communicate with parent components through custom events. Child components emit events using $emit, and parent components listen and respond accordingly, enabling dynamic interaction.
  • Java Applet Design: File, Edit, and Search Options with ActionPerformed FunctionsFeb 26, 2024. Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Close.
  • .NET Delegates in Event-Based Asynchronous Pattern for SeniorsFeb 26, 2024. This article dives into the practical learning of delegates, emphasizing real-world examples. It explores the Event-Based Asynchronous Pattern (EAP) in C# and its advantages, using delegates to implement asynchronous operations effectively.
  • How Do I Implement a 'Mouse Double Click' for a ListBoxFeb 26, 2024. Implementing a "mouse double click" event for a ListBox typically involves subscribing to the ListBox's MouseDoubleClick event and specifying the action you want to perform when the event occurs.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • ASP.NET Core with Hosted Service & Lifecycle EventsFeb 20, 2024. ASP.NET Core with Hosted Service & Lifecycle Events explores the integration of background tasks in ASP.NET Core applications. Learn how to implement long-running processes efficiently, manage service lifetimes, and leverage lifecycle events for graceful initialization and shutdown.
  • What Are the Directive Hook Arguments in Vue.jsFeb 13, 2024. In this article, we will understand the lifecycle of Vue.js directives through their hook arguments. Explore how these parameters facilitate interactions and manipulations within the directive's lifecycle, enhancing control and customization in Vue.js applications.
  • Understanding Azure Event GridFeb 12, 2024. Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
  • Cross-Platform Mobile Development FrameworksFeb 09, 2024. Developing mobile applications for both iOS and Android platforms can be challenging due to the need for separate codebases. Cross-platform frameworks offer a solution, allowing developers to write code once and deploy it on multiple platforms.
  • What are Synthetic Events in React?Feb 08, 2024. Howmany character only this content-This content highlights the significance of synthetic events in React, which are wrappers around native browser events providing a consistent interface across different browsers. It emphasizes their advantages, including cross-browser consistency, performance optimizations, and additional features.
  • Apache Kafka with Dapr Bindings in .NETFeb 07, 2024. This content provides an in-depth overview of integrating Apache Kafka with Dapr Bindings for building distributed event-driven applications. It explains the key concepts of Apache Kafka, Dapr, and Dapr Bindings, along with step-by-step
  • Display an Application Notification in Dynamics 365 Using JavaScriptFeb 07, 2024. Unlock Dynamics 365's in-app notifications with JavaScript. Activate via the Power Apps portal, create a web resource with code, and trigger on contact name change. Stay informed effortlessly.
  • Validating an HTTP Endpoint to Receive Events from Azure Event GridFeb 07, 2024. This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microsoft.
  • Vue.js Event Handling with v-on DirectiveFeb 07, 2024. Vue.js offers a powerful event handling mechanism through the v-on directive, enabling developers to respond to user actions such as clicks, inputs, and mouse movements dynamically.
  • What Are Event Modifiers in Vue.jsFeb 07, 2024. Event handling in Vue.js becomes even more powerful with the use of event modifiers. These modifiers enhance your ability to precisely control how events trigger the execution of methods, making your code more efficient and readable.
  • Integration Guide: Effortless Microsoft Graph API Access SSOFeb 06, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. The rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Explain about Mouse Events in JavaScriptFeb 06, 2024. Unlock the potential of mouse events in JavaScript for dynamic web interactions. From simple clicks to intricate movements, utilize events like click, dblclick, mouse down, mouse up, mouse move, mouseover, mouse out, mouse enter, mouse leave, and context menu.
  • How to Deploy .NET Aspire Apps to Azure Container AppsFeb 05, 2024. Learn to deploy .NET Aspire on Azure Container Apps effortlessly with Azure Developer CLI. Explore flexibility, scalability, and seamless integration.
  • Integration Guide for Effortless Microsoft Graph API AccessFeb 05, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. Empower your applications with the rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Custom Events in C# for Enhanced Communication and FlexibilityJan 31, 2024. In C#, you can create custom events to provide a way for classes to communicate and react to certain actions or state changes.
  • Understanding Event Sourcing Pattern in .NETJan 29, 2024. Event Sourcing, a potent architectural pattern in .NET, captures state changes through events, promoting auditability, time travel, and scalability. Learn its implementation and best practices for resilient applications.
  • What is Event Handling in Vue.js?Jan 23, 2024. Vue.js empowers web developers to create dynamic and responsive applications through efficient event handling. In this comprehensive guide, we will delve into the intricacies of Vue events, exploring the v-on directive, Vue methods, and event modifiers.
  • Azure Migrate Application and Code Assessment Tool for .NETJan 05, 2024. Explore seamless Azure migration with AppCAT, a powerful tool for .NET. Visual Studio and CLI installations, detailed analyses, and insightful reports empower coding excellence.
  • Action and Func Delegates in C#Jan 02, 2024. Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
  • Azure Functions in ASP.NET Core Web APIJan 01, 2024. Azure Functions, a component of Microsoft's serverless computing offerings in Azure, enable developers to create and deploy small, event-driven code without managing infrastructure. These functions, supporting languages like C# and JavaScript, automatically scale and integrate with Azure services, streamlining the development of serverless applications and microservices.
  • Event Driven Architecture in MicroservicesDec 24, 2023. In this article, you will learn about event streaming in microservices. Event streaming in microservices is a powerful approach to communication and data processing based on a continuous flow of events. Instead of relying on traditional request-response mechanisms, services publish and subscribe to events, enabling loose coupling and real-time data processing.
  • .NET Aspire - Cloud Native Apps Framework by MicrosoftDec 21, 2023. Aspire framework offered by Microsoft for Cloud Native Apps development. Embark on an insightful journey into Microsoft's Aspire framework, simplifying cloud app development. Explore its three pillars—Orchestration, Components, and Tooling. Follow a detailed walkthrough and unleash its potential, all accompanied by an illustrative dashboard overview.
  • .NET Aspire: Simplifying Cloud-Native Development with .NET 8Dec 13, 2023. The world of cloud-native development is ever-evolving, demanding tools and frameworks that streamline the process of building robust, scalable applications. Enter .NET Aspire, a recently released opinionated stack from Microsoft designed to simplify cloud-native development with .NET 8.
  • How to Detect Event on Clicks Outside in Angular?Dec 11, 2023. Learn to detect click events outside a component in Angular. Follow step-by-step instructions covering prerequisites, project setup, Bootstrap integration, and directive implementation.
  • React Native Development: Building a CI/CD Pipeline with Azure DevOpsNov 27, 2023. In the dynamic realm of mobile app development, React Native has become a prominent framework for cross-platform apps. Ensuring a seamless and error-free deployment demands a robust Continuous Integration/Continuous Deployment (CI/CD) pipeline. Azure DevOps, with its suite of tools, provides an ideal solution for automating build, test, and deployment processes for React Native apps.
  • FlatList in React NativeNov 27, 2023. FlatList is a vital component in React Native for efficiently rendering large lists of data. Learn its installation and basic usage, key features like data, renderItem, and keyExtractor props, and optimization techniques, including virtualization and item separators. Explore advanced configurations like horizontal lists, grid layouts, handling end-reached events, controlling scrolling behavior, and dynamically adjusting item heights.
  • Getting Started with Redux Saga in React NativeNov 26, 2023. Discover how to use Redux Saga middleware to simplify side effects management in your React Native app. Our guide covers everything from code organization to debugging, helping you optimize performance and maintainability. Get started with the Redux Saga today!
  • An Introduction to Redux in React NativeNov 21, 2023. Discover Redux - the state management library that revolutionizes React Native development. With Redux, you can simplify data flow, achieve code maintainability, and build scalable apps. Get a hands-on experience and transform your React Native projects!
  • New Features of .NET 8Nov 20, 2023. This article explains the release of .NET 8, it's new features and enhancement in the .NET ecosystem.
  • 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.
  • Getting Started with .NET Aspire for Production Ready Cloud Native AppsNov 20, 2023. .NET Aspire is a user-friendly solution designed for crafting applications ready for the cloud. It simplifies the development process, allowing developers to focus on their core business logic. Packaged as a set of NuGet packages, .NET Aspire handles specific cloud-related concerns. Whether you’re dealing with databases, messaging, or caching, .NET Aspire has you covered. It’s your go-to stack for creating cloud-ready, observable, and production-ready applications.
  • Event Trigger Data Sync from SQL Server to Synapse via Azure Data Factory / Synapse PipelineOct 23, 2023. Event Trigger Data Sync from SQL Server to Synapse via Azure Data Factory / Synapse Pipeline
  • Axios with React/React Native for HTTP RequestsOct 23, 2023. This article explains how to use Axios library in react native for making http requests
  • Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event TriggerOct 05, 2023. Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event Trigger
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • Event Trigger Power BI Entities Refresh via Azure SQL DatabaseSep 23, 2023. Event Trigger Power BI Entities Refresh via Azure SQL Database
  • Power BI Query Folding Sep 22, 2023. Query Folding in Power BI is a performance-enhancing feature that optimizes data analysis. It pushes data transformations to the source, improving data refresh and incremental processes. Learn how it works, its benefits, and its limitations, and see practical examples of efficient data handling in Power BI.
  • Differences Between CQRS, MediatR, and CRUDSep 21, 2023. Explore the differences between CQRS, MediatR, and CRUD in this insightful article. Learn when to use each technique, their unique benefits, and find scenarios where they shine in .NET development.
  • Events in ReactSep 13, 2023. Events in React are used to create interactive applications that provide information to the user when an event occurs.
  • Scalable Event-Driven APIs with Azure Event Grid and Service Bus in ASP.NET CoreSep 13, 2023. In this comprehensive example, we covered all the essential components required for building an event-driven API using Azure Event Grid and Azure Service Bus. Keep in mind that the specific implementation details may vary depending on your use case and requirements. Additionally, Azure provides extensive documentation and tools to assist you in configuring and managing these services effectively.
  • Transforming Streaming Data into Insights with Power BISep 12, 2023. Power BI empowers real-time dashboard creation, integrating streaming data sources like Azure Event Hubs, Kafka, and PubNub. Optimize data ingestion, design, and interactivity for effective real-time insights.
  • ASP.NET (2) - ASP.NET ControlsSep 06, 2023. This series of articles on ASP.NET, originally from legacy OneNote notes, covers fundamental concepts. It offers valuable insights into current programming involving similar technologies like Angular and React.
  • ASP.NET (4-1) - Page Life Cycle: DebuggingSep 04, 2023. In summary, debugging in ASP.NET Page Life Cycle involves closely monitoring the execution flow, inspecting control states, and handling exceptions to identify and resolve issues efficiently. Understanding the life cycle events and their order helps developers pinpoint problems and ensure smooth web application operation.
  • View-Model in Vue.js Sep 01, 2023. Explore Vue.js's View-Model architecture, central to building efficient interfaces. Learn what it is, its importance, and how to use it for separation of concerns, reactivity, and organized code.
  • Azure Firewall Cloud-Native, Intelligent, and Scalable Network SecurityAug 31, 2023. Discover the power of Azure Firewall in safeguarding cloud environments against modern threats. This cloud-native security service provides granular control over inbound and outbound traffic, leveraging dynamic threat intelligence for targeted protection. Explore its features, from application and network rules to seamless integration with Azure services, ensuring robust security as businesses embrace the cloud.
  • Cache Notifications and Event-driven Architecture with NCacheAug 27, 2023. In this article, let us discuss the importance of cache notifications in building an event driven application and how we can implement such a mechanism with an example in NCache
  • Delegates in C# Aug 25, 2023. Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
  • Using Alert to Enhance User Interaction in React NativeAug 25, 2023. Enhance user interaction in React Native using alerts. Learn how React Native's Alert component facilitates displaying informative messages, confirming actions, and gathering input effectively for a seamless user experience.
  • How To Display Alert Message In React.jsAug 24, 2023. How to Display Alert Message in React.js is a concise guide that walks you through the process of implementing alert messages or notifications in your React.js application. With this guide, you'll learn how to effectively communicate important information to users in a user-friendly manner.
  • Azure Stream Analytics Queries for Processing JSON DataAug 21, 2023. Exploring Azure Stream Analytics Queries for Processing JSON Data
  • Azure Event Hub: Empowering Seamless Real-Time Data StreamingAug 18, 2023. Azure Event Hub's transformative role in managing vast real-time data streams. Learn how it empowers efficient ingestion, processing, and distribution, enabling informed decisions and innovative applications.
  • Understanding Numeric IntPtr and UIntPtr in C#Aug 18, 2023. Discover the importance of IntPtr and UIntPtr in C# programming. Learn how these types facilitate memory management, pointer arithmetic, and interop with native libraries, ensuring efficient and safe practices.
  • React Native AsyncStorage: A Guide to Storing and Managing Local DataJul 28, 2023. When we are building a mobile application, we often need to store data locally for easy access. In React Native, AsyncStorage is a dependency that allows us to store data on our device.
  • Unlocking the Power of Serverless Computing with Azure Functions Jul 16, 2023. Azure Functions are a serverless computing service provided by Microsoft Azure. They allow developers to write and deploy small units of code called functions that can be triggered by various events. With scalability, cost efficiency, and seamless integration with other Azure services, Azure Functions provide an efficient solution for building event-driven and microservices-based applications. They support multiple programming languages, offer easy deployment and management options, and provide built-in monitoring and debugging capabilities. Azure Functions are found within the Azure portal and can be created using Azure CLI or Visual Studio.
  • Events and Event Delegation ModelJul 10, 2023. In any interactive environment, the program should be able to respond to actions performed by the user. These actions can be mouse click, key press or selection of a menu item.
  • 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.
  • Configure AWS User Notifications for AWS ServicesMay 30, 2023. Amazon Web Service (AWS) recently announced a new service, ‘AWS User Notifications’, that enables you to centrally setup and view notifications from various AWS services like AWS EC2 instance state changes, AWS S3 object events, AWS CloudWatch alarms, AWS Support case updates, etc.
  • Unleashing the Power of a Generic Event Bus in Angular: Building a Powerful and Scalable ArchitectureMay 30, 2023. A generic event bus in Angular acts as a central communication hub that enables components to publish and subscribe to events. It promotes loose coupling and enhances the flexibility and scalability of large-scale applications. By leveraging the event bus, developers can establish efficient communication between different parts of the application, facilitating seamless cross-component and cross-module interactions.
  • Learn How Event Loop Works in Client / Server Side in JavaScriptMay 26, 2023.
  • Native Keyword In JavaMay 19, 2023. In this article, you will learn Native Keyword in java
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • Async Storage in react nativeMay 01, 2023. This article covers the implementation of Async Storage in react nativeive
  • Processing & Handling multiple messages from WebHookApr 28, 2023. When we try to process a message from webhook, and do we need to process the message in queue or priority queue should be processed first
  • Embracing Event Sourcing in .NET 6: Design, Implementation, and Best PracticesApr 26, 2023.
  • How to Use EventCallBacks for Two-Way Communication Between Blazor ComponentsApr 24, 2023. How to Use EventCallBacks for Two-Way Communication Between Blazor Components.
  • Scrum - Roles, Events And Artifacts Apr 21, 2023. This is an article on Scrum Roles, Events, & Artifacts.
  • Plugins and Event Execution Pipeline in DataverseApr 19, 2023. Plugin is a custom event handler that executes in response to a specific event raised during processing a Dataverse operation. It is a custom business logic implemented using custom class as a Class Library in .NET framework. It is compiled into a  assembly that can be uploaded and registered in Dataverse.
  • Navigation in React NativeApr 17, 2023. The article is a detailed description on how to add navigation to a react native app
  • Working with APIs Calls In React NativeApr 16, 2023. In today's world of mobile app development, working with APIs is a fundamental requirement. APIs allow developers to integrate data from various sources and services into their apps.
  • FlatList vs SectionList in React Native- Choosing the Right List Component for Your AppApr 15, 2023. In React Native, efficiently displaying big lists of data is critical for offering a smooth and responsive user experience. FlatList and SectionList are two prominent list rendering components in React Native.
  • React Native Stack Navigation Made Simple - A Beginner's GuideApr 12, 2023. Navigation is a critical part of creating a high-quality mobile application. It is responsible for giving consumers an intuitive and seamless experience, allowing them to seamlessly navigate from one screen to the next.
  • Flutter Vs React Native - The Ultimate Battle For Cross-Platform Mobile Development SupremacyApr 11, 2023. Mobile app development has seen rapid growth in recent years, as cross-platform development solutions have become more popular. There are two solutions that have proven popular among developers: Flutter and React Native.
  • Getting Started With SQLite In React NativeApr 10, 2023. Storing and managing data in a mobile app might be difficult. This is where SQLite comes in. SQLite is a lightweight and embedded database that can be used to store data in a mobile app
  • Azure Messaging And Event Streaming Services - An Overview And Comparison With KafkaApr 04, 2023. In this article, you will learn about Azure Messaging and Event Streaming Services: An Overview and Comparison with Kafka.
  • Storage Event Trigger In DatabricksMar 07, 2023. Trigger jobs when new files arrive in storage container (Azure Blob/AWS bucket)
  • Event Handling In ReactJSMar 06, 2023. In this article, you will learn about Event Handling in ReactJS.
  • Broadcasting Events In AngularFeb 14, 2023. In this article, we will learn Broadcasting events in Angular application. Broadcasting events is generally use for brodcast message or data to whole application.
  • Show And Hide DIVs On Button Click With JavaScriptFeb 13, 2023. In this article, you will learn how to show and hide DIVs on Button Click with JavaScript.
  • How To Handle Event Handling And Routing In ReactFeb 07, 2023. In this article, you will learn how to handle Event Handling and Routing in React.
  • Setting Up Docker In Linux VM For Container AppsFeb 03, 2023. In this article, we will see how to set up docker in Linux VM for building and shipping container applications.
  • What Is SIEMFeb 02, 2023. Learn about what is SIEM [ Security information and event management ] and its roles.
  • Use Of Delegates In C# EventsJan 23, 2023. Here is an example of programs in C# that demonstrates the events with and without delegates.
  • Kubernetes for Dummies: A Simple and Practical Introduction to Container Orchestration and EcosystemJan 17, 2023. Learn the basics of Kubernetes and container orchestration in this easy-to-understand guide. Perfect for beginners, this article covers the key concepts and practical use cases of Kubernetes, making it simple for anyone to get started with container orchestration.
  • Understand Properties And Events Of Screens In PowerAppsDec 29, 2022. In this article, you will learn about properties and events associated with PowerApps screen.
  • Events And Delegates In Class Library And Worker ServiceDec 21, 2022. In this article, you will learn about Events and Delegates in Class Library and Worker Service.
  • Ahead Of Time (AOT) Compilation To Native Code In .NET 7Dec 13, 2022. In this article, you will learn about Ahead Of Time (AOT) compilation to native code in .NET 7.
  • Apache Kafka Introduction, Installation, And Implementation Using .NET Core 6Dec 12, 2022. In this article, you will learn about Apache Kafka Introduction, Installation, and Implementation Using .NET Core 6.

About Native-Events

NA

OUR TRAINING