RemotingFormat Enum
Namespace: System.Runtime.Serialization
Specifies the format of the serialized data for .NET remoting.
Syntax
public enum RemotingFormat
Members
Binary
0
Indicates that the remoting data is serialized in binary format.
Soap
1
Indicates that the remoting data is serialized in SOAP format.
Remarks
The RemotingFormat enum is used to specify the serialization format for .NET remoting. This allows developers to choose between the more compact binary format and the more interoperable SOAP format.
When a remote object is serialized, the formatter uses the RemotingFormat to determine how to encode the object's data. The default format for .NET remoting is binary.
Requirements
| Assembly | File name |
|---|---|
| mscorlib.dll | mscorlib.dll |
| Framework | Versions supported |
|---|---|
| .NET Framework | Supported in: 4.5, 4.0, 3.5, 3.0, 2.0 Client Profile: Supported in 4.0, 3.5 SP1 |
| .NET Standard | Not supported in any versions. |
| .NET Core | Not supported in any versions. |