PropertyCannotBeRetrievedException.GetObjectData Method
SQL Server 2012
Populates a SerializationInfo object with the data needed to serialize the target object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
[SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] public override void GetObjectData( SerializationInfo info, StreamingContext context )
Parameters
Implements
ISerializable.GetObjectData(SerializationInfo, StreamingContext)_Exception.GetObjectData(SerializationInfo, StreamingContext)
Any objects that are included in the SerializationInfo are automatically tracked and serialized by the formatter. Code that calls GetObjectData requires the SecurityPermission for providing serialization services. Associated enumeration: SerializationFormatter.
Note |
|---|
It is not guaranteed that this method will be called only once per object instance during serialization. Therefore, the method should be implemented in such a way that its behavior will be the same regardless of the number of times it is called. |
Note