Examples of InitiateDownloadEventArgs


Examples of com.ngt.jopenmetaverse.shared.sim.events.asm.InitiateDownloadEventArgs

    protected void InitiateDownloadPacketHandler(Object sender, PacketReceivedEventArgs e)
    {
        InitiateDownloadPacket request = (InitiateDownloadPacket)e.getPacket();
        try
        {
            onInitiateDownload.raiseEvent(new InitiateDownloadEventArgs(Utils.bytesToString(request.FileData.SimFilename),
                Utils.bytesToString(request.FileData.ViewerFilename)));
        }
        catch (Exception ex) { JLogger.error(ex); }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.