---
title: "What is marshalling? Explain types of marshalling."  
description: "What is marshalling? Explain types of marshalling."  
author: "Anonymous User"  
published: 2011-05-23  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/1000/what-is-marshalling-explain-types-of-marshalling  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# What is marshalling? Explain types of marshalling.

Marshaling is a process of transforming or serializing data from one application domain and exporting it to another application domain.

## Two types of marshalling

- **Marshal by value:** a copy of an object is created by the server and is passed and used by the client.
- **Marshal by reference:** the client creates a proxy to access the object.

## Answers

### Answer by Anonymous User

Marshaling is a process of transforming or serializing data from one application domain and exporting it to another application domain.

## Two types of marshalling

- **Marshal by value:** a copy of an object is created by the server and is passed and used by the client.
- **Marshal by reference:** the client creates a proxy to access the object.


---

Original Source: https://www.mindstick.com/interview/1000/what-is-marshalling-explain-types-of-marshalling

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
