NHibernate.UnresolvableObjectException.UnresolvableObjectException C# (CSharp) Method

UnresolvableObjectException() protected method

protected UnresolvableObjectException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System
		protected UnresolvableObjectException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
			identifier = info.GetValue("identifier", typeof(object));
			clazz = info.GetValue("clazz", typeof(System.Type)) as System.Type;
			entityName = info.GetString("entityName");
		}

Same methods

UnresolvableObjectException::UnresolvableObjectException ( object identifier, System clazz ) : System
UnresolvableObjectException::UnresolvableObjectException ( object identifier, string entityName ) : System
UnresolvableObjectException::UnresolvableObjectException ( string message, object identifier, System clazz ) : System
UnresolvableObjectException::UnresolvableObjectException ( string message, object identifier, string entityName ) : System