BinaryFormatter::UnsafeDeserializeMethodResponse Method (Stream^, HeaderHandler^, IMethodCallMessage^)
Deserializes a response to a remote method call from the provided Stream.
Assembly: mscorlib (in mscorlib.dll)
public: [SecurityCriticalAttribute] [ComVisibleAttribute(false)] Object^ UnsafeDeserializeMethodResponse( Stream^ serializationStream, HeaderHandler^ handler, IMethodCallMessage^ methodCallMessage )
Parameters
- serializationStream
-
Type:
System.IO::Stream^
The stream from which to deserialize the object graph.
- handler
-
Type:
System.Runtime.Remoting.Messaging::HeaderHandler^
The HeaderHandler that handles any headers in the serializationStream. Can be null.
- methodCallMessage
-
Type:
System.Runtime.Remoting.Messaging::IMethodCallMessage^
The IMethodCallMessage that contains details about where the call came from.
| Exception | Condition |
|---|---|
| ArgumentNullException | The serializationStream is null. |
| SerializationException | The serializationStream supports seeking, but its length is 0. |
| SecurityException | The caller does not have the required permission. |
Details about the caller object are not sent to the remote object during the method call. Instead, these details are obtained from the original method call that is passed to the current method in the methodCallMessage parameter.
This method uses SecurityAction::LinkDemand to prevent it from being called from untrusted code; only the immediate caller is required to have SecurityPermissionAttribute::SerializationFormatter permission. Do not use this method if your code can be called from partially trusted code. In partially trusted scenarios, use DeserializeMethodResponse instead. In full trust scenarios, UnsafeDeserializeMethodResponse provides better performance than DeserializeMethodResponse.
For successful deserialization, the current position in the stream must be at the beginning of the object graph.
Security Note
|
|---|
Calling this method with untrusted data is a security risk. Call this method only with trusted data. For more information, see Untrusted Data Security Risks. |
To provide serialization services. Associated enumeration: SecurityPermissionFlag::SerializationFormatter.
Available since 1.1
