Merge pull request #6 from matt-sullivan/master
Fix SSPIException serialization bug due to typo.
This commit is contained in:
@@ -35,7 +35,7 @@ namespace NSspi
|
||||
protected SSPIException( SerializationInfo info, StreamingContext context )
|
||||
: base( info, context )
|
||||
{
|
||||
this.message = info.GetString( "messsage" );
|
||||
this.message = info.GetString("message");
|
||||
this.errorCode = (SecurityStatus)info.GetUInt32( "errorCode" );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user