Examples of ParcelPropertiesUpdateMessage


Examples of com.ngt.jopenmetaverse.shared.sim.message.LindenMessages.ParcelPropertiesUpdateMessage

          {
              URI url = simulator.Caps.CapabilityURI("ParcelPropertiesUpdate");
 
              if (url != null)
              {
                  ParcelPropertiesUpdateMessage req = new ParcelPropertiesUpdateMessage();
                  req.AuthBuyerID = this.AuthBuyerID;
                  req.Category = this.Category;
                  req.Desc = this.Desc;
                  req.GroupID = this.GroupID;
                  req.Landing = this.Landing;
                  req.LocalID = this.LocalID;
                  req.MediaAutoScale = this.Media.MediaAutoScale;
                  req.MediaDesc = this.Media.MediaDesc;
                  req.MediaHeight = this.Media.MediaHeight;
                  req.MediaID = this.Media.MediaID;
                  req.MediaLoop = this.Media.MediaLoop;
                  req.MediaType = this.Media.MediaType;
                  req.MediaURL = this.Media.MediaURL;
                  req.MediaWidth = this.Media.MediaWidth;
                  req.MusicURL = this.MusicURL;
                  req.Name = this.Name;
                  req.ObscureMedia = this.ObscureMedia;
                  req.ObscureMusic = this.ObscureMusic;
                  req.parcelFlags = this.Flags;
                  req.PassHours = this.PassHours;
                  req.PassPrice = (long)this.PassPrice;
                  req.SalePrice = (long)this.SalePrice;
                  req.SnapshotID = this.SnapshotID;
                  req.UserLocation = this.UserLocation;
                  req.UserLookAt = this.UserLookAt;
                
                  OSDMap body = req.Serialize();
 
                  CapsHttpClient capsPost = new CapsHttpClient(url);
                  capsPost.BeginGetResponse(body, OSDFormat.Xml, simulator.Client.settings.CAPS_TIMEOUT);
              }
              else
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.