Subtext.Scripting.Exceptions.SqlScriptExecutionException.ISerializable C# (CSharp) Méthode

ISerializable() private méthode

When overridden in a derived class, sets the T:System.Runtime.Serialization.SerializationInfo with information about the exception.
private ISerializable ( SerializationInfo info, StreamingContext context ) : void
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
Résultat void
        void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
        {
            info.AddValue("Script", _script);
            GetObjectData(info, context);
        }