Microsoft.Practices.Prism.Modularity.LoadModuleCompletedEventArgs.LoadModuleCompletedEventArgs C# (CSharp) Method

LoadModuleCompletedEventArgs() public method

Initializes a new instance of the LoadModuleCompletedEventArgs class.
public LoadModuleCompletedEventArgs ( ModuleInfo moduleInfo, Exception error ) : System
moduleInfo ModuleInfo The module info.
error System.Exception Any error that occurred during the call.
return System
        public LoadModuleCompletedEventArgs(ModuleInfo moduleInfo, Exception error)
        {
            if (moduleInfo == null) throw new ArgumentNullException("moduleInfo");
            Contract.EndContractBlock();

            this.ModuleInfo = moduleInfo;
            this.Error = error;
        }
LoadModuleCompletedEventArgs