fCraft.Events.PlayerJoiningWorldEventArgs.PlayerJoiningWorldEventArgs C# (CSharp) Method

PlayerJoiningWorldEventArgs() private method

private PlayerJoiningWorldEventArgs ( [ player, [ oldWorld, [ newWorld, WorldChangeContext context, string textLine1, string textLine2 ) : System
player [
oldWorld [
newWorld [
context WorldChangeContext
textLine1 string
textLine2 string
return System
        internal PlayerJoiningWorldEventArgs( [NotNull] Player player, [CanBeNull] World oldWorld,
                                              [NotNull] World newWorld, WorldChangeContext context,
                                              string textLine1, string textLine2 ) {
            if( player == null ) throw new ArgumentNullException( "player" );
            if( newWorld == null ) throw new ArgumentNullException( "newWorld" );
            Player = player;
            OldWorld = oldWorld;
            NewWorld = newWorld;
            Context = context;
            TextLine1 = textLine1;
            TextLine2 = textLine2;
        }

Same methods

PlayerJoiningWorldEventArgs::PlayerJoiningWorldEventArgs ( [ player, [ oldWorld, [ newWorld, WorldChangeReason context ) : System
PlayerJoiningWorldEventArgs::PlayerJoiningWorldEventArgs ( [ player, [ oldWorld, [ newWorld, WorldChangeReason context, string textLine1, string textLine2 ) : System
PlayerJoiningWorldEventArgs