Related resources for serial
  • Working with gRPC API in .NET 81/21/2025 5:23:12 AM. We create a simple gRPC service using .NET C# to perform CRUD operations on a book management system. Learn how to define a .proto file, implement server-side logic, and test with tools like Postman
  • Understanding .NET Binary Serialization11/19/2024 10:13:05 AM. .NET Binary Serialization simplifies the process of converting objects into binary formats for efficient storage or data transfer. This guide explores serialization techniques, the BinaryFormatter cla
  • How to Read and Write JSON Files in C#11/17/2024 10:49:03 AM. JSON is a common data format used in APIs, configuration files, and data exchange. Learn to handle JSON in C# using `System.Text.Json`. This article covers creating data models, writing to and readin
  • Serialization and DeSerialization in C#10/21/2024 10:18:19 AM. Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binar
  • How to Make Serial Chart With JSON Data Using amChart10/15/2024 11:48:32 AM. This article demonstrates how to use amCharts to display JSON data in a serial layout. It walks through the steps of adding an HTML container, referencing JavaScript libraries, creating a JSON data fi
  • How To Create An HTTP Trigger Azure Function App Using Visual Studio 201710/1/2024 8:24:46 AM. Azure Functions is a serverless cloud solution that allows you to run code on-demand without managing infrastructure. It supports multiple programming languages, offers a pay-per-use pricing model, an
  • Property 'X' Does Not Configure the Code Serialization for its Property Content9/11/2024 5:35:43 AM. The .NET 9 RC-1, released on September 9, 2024, introduced a WinForms component error (WFO1000), where properties fail to serialize code. To fix this, add using System.ComponentModel and apply [Design
  • Serialization And Deserialization In C# Using Protobuf-net.dll9/4/2024 6:53:55 AM. This article describes how to implement serialization and deserialization using Protobuf-net.dll. This article explores Protobuf-net, a .NET library for efficient serialization and deserialization usi
  • AI-Powered Virtual Assistants: How to Build One in C#8/28/2024 8:19:26 AM. Build an AI-powered virtual assistant in C# using Microsoft Bot Framework, ML.NET, and Azure Cognitive Services. This assistant can perform tasks like setting reminders, answering queries, and recogni
  • Console Application To Fetch SharePoint List Data Using REST API With CAML Query In C# Managed Code8/22/2024 7:14:27 AM. Learn how to use SharePoint 2013 REST API with CAML queries in a C# console application. This guide covers fetching data from SharePoint lists using POST methods, setting request headers, and handling
  • Best Practices for Managing Large Session States in ASP.NET MVC8/14/2024 6:07:12 AM. To manage large session states in ASP.NET MVC efficiently, follow best practices: minimize stored data, use serializable objects, enable session state compression, and implement distributed caching wi
  • Session State In ASP.NET Core8/13/2024 10:42:57 AM. ASP.NET Core sessions allow storing user data between requests. Sessions use a SessionId stored in a cookie, which is sent with each request. Sessions can be configured as in-memory (In-Proc) or distr
  • Multithreading in C# Task Creation Using Loop8/6/2024 5:04:09 AM. This article introduces multithreading in C# using the Task class from the Task Parallel Library (TPL). It explains creating and executing tasks serially within a loop, ensuring tasks are completed se
  • Serialization (2) - JSON Serialization7/17/2024 6:50:23 PM. This article will discuss JSON Serialization. Serialization is the process of converting an object into a stream of bytes to store the object or transmit it to memory, a database, or a file.
  • Serialization (1): in General7/17/2024 3:28:54 PM. This article discusses Serialization in general.
  • C# Method Designed to Make a POST Request to a Web API Endpoint7/4/2024 5:31:08 AM. This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practi
  • Annotations used with Spring Boot Applications7/1/2024 5:26:46 AM. Spring Boot simplifies Java application development with powerful annotations like @SpringBootApplication, @RestController, and @Service. These annotations automate configuration, enable RESTful servi
  • AJAX In ASP.NET6/27/2024 4:54:38 AM. AJAX (Asynchronous JavaScript and XML) enhances web applications by enabling asynchronous data retrieval from servers without reloading the entire page. Utilizing XMLHttpRequest and JSON, it boosts in
  • Generating XML Root Node Having Colon-Via Serialization6/24/2024 9:00:23 AM. Generating XML dynamically with a defined schema involves handling namespaces and prefixes correctly. Using XmlElement and XmlAttribute classes helps serialize XML parts, but achieving a prefixed root
  • WCF Performance Tuning6/12/2024 10:10:04 AM. WCF (Windows Communication Foundation) enables network distributed services with a service-oriented approach. Improving its performance involves selecting proper bindings, understanding throttling, op
  • Create Repeating Section In PowerApps New Form - Step By Step - Part One6/12/2024 9:40:57 AM. This article guides you through creating a Repeating Section in PowerApps forms for New and Edit forms. Learn to store data in SharePoint lists, manage form navigation, and enhance user experience wit
  • Convert an Embedded Resource into an XML File in WPF C#6/6/2024 4:49:04 AM. 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 ru
  • Introducing HybridCache The Future of .NET Caching6/4/2024 6:00:05 AM. HybridCache bridges gaps in .NET's IDistributedCache and IMemoryCache, introducing advanced capabilities like stampede protection and configurable serialization. It simplifies caching with a unifi
  • ASP.NET State Management Techniques Part 25/31/2024 10:08:40 AM. ASP.NET state management techniques include session, application, view state, cookies, query strings, and more. These manage data across requests, enhancing user experience and enabling data persisten
  • Read XML in C#5/31/2024 10:03:18 AM. Learn to parse and manipulate XML data in C# effortlessly. Utilize XML readers, XPath, or LINQ to XML for efficient XML processing. Handle XML documents, elements, attributes, and namespaces seamlessl
  • Demystifying customStringify: Filtering Functions in JSON5/13/2024 4:51:28 AM. In the vast world of data, JSON (JavaScript Object Notation) reigns supreme for its lightweight and human-readable format. But what if you want to control how specific data gets represented in your JS
  • Serialization And Deserialization in .NET5/8/2024 10:11:00 AM. Serialization in .NET transforms objects into a format suitable for storage or transmission, facilitating data interchange. Deserialization reverses this process, reconstructing objects from the seria
  • InProc Session State Mode in ASP.Net5/8/2024 9:51:38 AM. This article explains the InProc Session State Mode in ASP.NET. The InProc Session State Mode is the default Session State Mode. We can host multiple websites/web applications on a single IIS. Each ap
  • REST Service in ASP.NET Web API5/8/2024 9:50:41 AM. Learn to build RESTful services with ASP.NET Web API. Explore HTTP methods, routing, JSON serialization, DTOs, attribute routing, content negotiation, and error handling for robust APIs. Dive into pra
  • Consuming Web Service In ASP.NET MVC4/29/2024 10:04:02 AM. Consuming web services in ASP.NET MVC involves adding a service reference, generating a proxy class, and utilizing HTTP clients like HttpClient or WebClient. Data exchange occurs through SOAP or REST
  • .NET Serialization4/24/2024 1:26:20 PM. Serialization in .NET facilitates object state persistence, enabling transmission across networks or storage in various formats like binary and XML. It ensures data integrity, exemplified by the US Vi
  • SoapFormatter in C#4/23/2024 11:25:44 AM. Learn to serialize and deserialize objects using SOAPFormatter in .NETFramework. Understand the usage of the IFormatter interface with Serialize and Deserialize functions. Implement serialization wit
  • Introduction To Serialization In .NET4/23/2024 7:22:38 AM. In this article, we will Learn about various serialization formats like binary, XML, and JSON, along with serialization attributes and best practices for efficient data handling and persistence within
  • Conversion from Object to JSON by Json.NET 4/22/2024 8:15:13 AM. Explore seamless conversion of objects to JSON using Json.NET, a popular library in C#. Learn efficient serialization techniques, data transformation strategies, and harness the power of .NET developm
  • Newtonsoft.Json vs. System.Text.Json: Comparative Analysis4/17/2024 4:44:19 AM. In the world of .NET development, handling JSON serialization and deserialization is a common task, especially when dealing with web APIs. In this article, we'll compare and contrast these two lib
  • A simplified approach to serializing and deserializing objects in C# 104/16/2024 10:48:12 AM. This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
  • Polymorphic serialization using System.Text.Json4/12/2024 5:50:15 AM. Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each obj
  • Globally Configuring Values For JSON Serializer In ASP.NET Core 3.14/8/2024 8:18:26 AM. Learn how to set constraints globally for JSON serialization in ASP.NET Core, avoiding manual decoration of every property. Customize data formatting using converters, and fallback to default settings
  • Getting Started With Remote Procedure Call4/4/2024 9:33:47 AM. Getting Started With Remote Procedure Call. In Remote Procedure Call(RPC), the caller and sender process are executed on different machines, they can communicate with the help of the transport and net
  • Built In Rest Client in .NET Core4/1/2024 7:30:16 AM. .NET Core provides a built-in REST client through HttpClient in the System.Net.Http namespace. It offers lightweight, cross-platform capabilities for seamless integration with web services, enabling e
  • Information Computation Mastery: Serialization4/1/2024 5:04:20 AM. To use computers to automate information processing we have to deal with bitstreams as the information representation. We need bitstreams to be handled using files to preserve the data. The transition
  • What is JSON Serialization and Deserialization in C# 3/27/2024 6:23:31 AM. JSON (JavaScript Object Notation) has become a ubiquitous data interchange format, especially in web development. In C#, developers have multiple options for serializing C# objects to JSON and deseria
  • Inserting List of Records into Single SQL Column As XML File In ASP.NET MVC3/13/2024 8:39:38 AM. This tutorial guides you through the process of converting a list of records into XML and inserting it into a single SQL column, streamlining data storage and retrieval in your application.
  • Difference Between JSON Object and JavaScript Object3/6/2024 9:23:15 AM. JSON objects and JavaScript objects share similarities but differ in syntax and usage. JSON is a text-based data interchange format, while JavaScript objects are native data structures. JSON follows a
  • What is Serialization and Deserialization in C#?3/4/2024 9:35:16 AM. Serialization and deserialization are processes used to convert objects into a format that can be easily stored, transmitted, or persisted, and then reconstructed back into objects when needed.
  • Camelcase Serialization in .Net 92/19/2024 6:27:06 AM. In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expe
  • Eager Loading In ASP.NET Core Web API Complete Example 1/22/2024 8:52:34 AM. In ASP.NET Core, eager loading is a technique used to load related data along with the main entity in a single database query. This helps to optimize performance by reducing the number of database cal
  • External Data - Attributes - Profiling Data Access1/6/2024 6:20:56 AM. The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. A very important kind of external data is streaming data. Usual
  • External Data - File and Stream Concepts1/3/2024 6:49:37 AM. The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. A very important kind of external data is streaming data. Usual
  • JSON Serialization and Deserialization in C#12/29/2023 4:57:42 AM. JSON serialization and deserialization in C#! Learn the ropes with Newtonsoft.Json (Json.NET) or the built-in System.Text.Json. Level up your data interchange skills for seamless system communication.
  • How do I serialize and deserialize JSON data in C#?11/20/2023 5:10:55 AM. Download source code on how to serialize and deserialize JSON data in C#.
  • JSON Serialization and Deserialization in C#11/19/2023 5:20:30 AM. In this article, you will learn about JSON serialization and deserialization in C#. We can implement JSON Serialization/Deserialization by using JavaScriptSerializer class, DataContractJsonSerializer
  • Serializing Objects In C#10/16/2023 5:55:56 AM. Serialization in C# is the process of converting an object into a stream of bytes to store the object to memory, a database, or a file. Its main purpose is to save the state of an object in order to b
  • New Dataset Features In ADO.Net 2.010/12/2023 4:58:43 AM. ADO.NET class libraries are used for accessing data from a wide range of data sources. One of the best features in ADO.Net is DataSet.Even though it was an exciting feature, performance was a concern
  • Serialize And Deserialize Objects By Using BinaryFormatter10/10/2023 11:26:52 AM. Serializing and deserializing objects using BinaryFormatter in C# is a powerful technique for converting complex objects into a binary format for storage, transmission, or deep cloning. This process a
  • Serialize And Deserialize Using SoapFormatter Class In C#10/6/2023 9:40:28 AM. In this article you will learn about Serialize and Deserialize using SoapFormatter Class in C#.
  • Use Of Serialization In C#9/24/2023 8:23:14 PM. In this article I will demonstrate the use of serialization and how to perform XML serialization.
  • Apply Object Serialization In Real Life Situation9/22/2023 11:15:45 AM. Object serialization is a process of streaming an object into a byte array. This article explains the object serialization process using a real world example.
  • .NET Class For Serialization9/22/2023 8:42:33 AM. In the .NET framework, serialization is the process of converting objects into a format that can be easily stored, transmitted, or reconstructed later. .NET provides various classes and libraries to f
  • Comparing JSON Deserializers9/20/2023 6:33:51 AM. Often we come across situations to deserialize the json string to object and wonder which one is the best way.
  • Serialization vs. Marshaling9/19/2023 5:47:58 AM. Are you somewhat confused between Serialization and Marshaling? This writing would break this confusion up, it would give you a basic understanding of the process of Serialization and the process of M
  • Retrieving Motherboard Serial Number Via WMI9/6/2023 6:50:30 AM. Learn how to retrieve Motherboard serial number and other related information via Windows Management Instrumentation (WMI) in .NET.
  • Newtonsoft JSON Deserialize in C# with Example8/17/2023 5:33:39 AM. In this article, you will learn about Newtonsoft JSON Deserializing in C# with an example.
  • ASP.NET Core Web API for Abusive Comments Detection8/12/2023 12:54:21 PM. Implementing abusive comments detection in an ASP.NET Core Web API involves utilizing Natural Language Processing (NLP) techniques and external APIs, such as the Perspective API from Google. This impl
  • Serialization and Deserialization in C#6/15/2023 10:03:03 AM. In this article you will learn about serialization in C# and deserialization In C#.
  • Convert string to JSON in C#6/6/2023 4:40:06 AM. Code example of how to convert string to JSON in C#
  • Convert a JSON object into a string in C#6/3/2023 4:32:06 PM. Code example of how to convert an object into a JSON string in C#.
  • JSON Serialization And Deserialization Using JSON.NET Library In C#3/13/2023 7:01:37 AM. In this article, you will learn how to serialize and deserialize JSON objects using the JSON.NET library. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for hum
  • Create Generic HttpClient Call Function With Error Handling In C#3/9/2023 11:01:52 AM. This article presents a step-by-step guide on how to create a generic HttpClient call function in C# that can handle different request methods, request body types, response types, and error handling u
  • XML Serialization in practice: Preparing The Central Bank Service2/17/2023 10:38:57 AM. 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.
  • Essentials Of Serialization - Binary Serialization2/15/2023 2:38:03 PM. This article will help you to understand serialization and deserialization and use Binary serialization in practice
  • Communicate with Serial Port in C#2/11/2023 3:08:56 PM. C# SerialPort class allows communication with a serial port in C#. Learn to write data via a serial port and receive data from a device connected to a serial port in C#.
  • CLR Object And JSON Serialization And Deserialization2/2/2023 10:49:02 AM. This article demonstrates how to serialize and deserialize CLR objects for web-based applications.
  • Java Records Met Serialization1/8/2023 1:49:55 PM. There is a new syntax in the java language to declare a record class. A Record class tightly couples its API to its internal representation. The declaration of a record class is significantly more con
  • PostgreSQL Auto Increment Using SERIAL11/14/2022 6:31:54 AM. Learn to create an auto-increment with PostgreSQL using the SERIAL data type.
  • XML with C#8/25/2022 7:17:34 AM. Through this article you will learn how to handle XML in c#.
  • XML Serialization and Deserialization in C#8/23/2022 6:23:26 AM. In this article I would like to demonstrate a generic XML Serialization/Deserialization process.
  • How to serialize an object using an ISerializable interface 3/23/2022 9:40:07 AM. In this article I will show you how to serialize an object using ISerializable interface with a very simple manner.
  • How To Work With Avro Data Type In .NET Environment3/2/2022 2:09:40 PM. The article shows an automated way of reading Avro data in .NET applications. It includes reading the Avro schema, generating C# models, and deserializing the data. The article contains also practical
  • Create Your Own Custom File Type3/2/2022 9:01:26 AM. This article describes a simple approach to creating a custom file type.
  • Mapping with a GPS and C#2/8/2022 10:21:45 AM. This article shall describe a very simple approach to working with a GPS device within the context of a C# application.
  • Deserializing Various Type Of JSON Data In C#2/8/2022 4:47:12 AM. In this article, you will learn how to deserialize various type of json data in c#.
  • Pickle In Python2/7/2022 10:31:29 AM. The article explains Serialization / Deserialization process of object in Python
  • How To Post Data In ASP.NET Using AJAX Without JSON Form Serializer2/7/2022 9:10:14 AM. This article explains the method of sending data in the ASP.NET MVC application using Ajax without JSON Form serializer.
  • Serializing and Deserializing XML String1/11/2022 10:01:28 AM. In this article we will see how we can serialize a xml sring into an object and vice versa. You can serialize your object to a byte array and can deSerialize the byte array into an object.
  • Serialization in C# and .NET1/4/2022 10:47:20 AM. Serialization is a process through which an object's state is transformed into some serial data format, such as XML or binary format.
  • Overriding JSON Serializer In Giraffe12/29/2021 3:00:30 PM. Overriding JSON Serializer in Giraffe
  • Deserialize JSON Format In An ASP.NET GridView Using System.Text.Json Library12/6/2021 3:00:03 PM. In this article, you will learn about the best way to deserialize JSON format in an ASP.NET GridView using System.Text.Json library.
  • Deep Copy of Object in C#11/25/2021 10:43:54 AM. In this article, we can create deep copy of an object with the help of Serialization and Reflection.
  • How To Post Data In ASP.NET Core Using Ajax11/23/2021 9:58:57 AM. This article describes how to post data in the ASP.NET Core MVC application using the Ajax Post method.
  • Generic Implementation For Serializer/Deserializer Using Google Protocol Buffer9/24/2021 3:35:47 PM. Serialize or deserialize the input using google protocol buffer library in generic implementation.
  • Boot Diagnostic And Serial Console For Azure VM7/23/2021 1:30:44 PM. In this article, you will learn about boot diagnostic and serial console for Azure virtual machines.
  • How to Consume Web API Using Web Request2/10/2021 5:29:40 AM. This article explains how to consume a Web API using a Web Request and deserialize it in JSON and bind data in a grid view.
  • Extreme .NET Reverse Engineering: Part 52/3/2021 6:52:33 AM. In this article, we have seen how to obtain sensitive information without having access to real source code, including how to manipulate IL code to do that.
  • Serializing and Deserializing an Object as Binary Data Using Binary Formatter ASP.NET C#1/28/2021 5:13:54 AM. In this article, we are going to see how to serialize and deserialize an object as binary data using the binary formatter.
  • Load Balancing And Session State Configuration1/18/2021 10:01:48 AM. Load Balancing And Session State Configuration are techniques for the Application Administrator to divide or distribute the workload evenly across various servers.
  • Demystify WebApi Content Negotiation1/14/2021 10:50:43 AM. In this article we will look into the heart of ASP.Net WebApi content negotiation.
  • Implementation Of XML Serialization And Data Contract Serialization Utility In .NET11/24/2020 2:13:30 AM. Basic Idea about DeSerializer and Serializer; advantages and disadvantages of XmlSerializer and DataContractSerializer; implementation XML and DataContract Serializer/ De-Serializer.
  • .Net Serialization using Soap Formatter11/23/2020 2:13:44 AM. This article explains how to serialize objects using soap formatter which is used extensively in .Net Remoting.
  • Parsing List of JSON Elements as List With JSON.Net11/11/2020 4:02:51 AM. This article descibes a JSON format where a list of JSON objects are present with no root elements.