public IAsyncResult BeginIdentify(Geometry Location, MosaicRule MosaicRule, Point PixelSize, AsyncCallback callback, object asyncState) { return(base.BeginInvoke("Identify", new object[] { Location, MosaicRule, PixelSize }, callback, asyncState)); }
public void IdentifyAsync(Geometry Location, MosaicRule MosaicRule, Point PixelSize, object userState) { if (this.IdentifyOperationCompleted == null) { this.IdentifyOperationCompleted = new SendOrPostCallback(this.OnIdentifyOperationCompleted); } base.InvokeAsync("Identify", new object[] { Location, MosaicRule, PixelSize }, this.IdentifyOperationCompleted, userState); }
public void IdentifyAsync(Geometry Location, MosaicRule MosaicRule, Point PixelSize) { this.IdentifyAsync(Location, MosaicRule, PixelSize, null); }
public ImageServerIdentifyResult Identify([XmlElement(Form = XmlSchemaForm.Unqualified)] Geometry Location, [XmlElement(Form = XmlSchemaForm.Unqualified)] MosaicRule MosaicRule, [XmlElement(Form = XmlSchemaForm.Unqualified)] Point PixelSize) { object[] array = base.Invoke("Identify", new object[] { Location, MosaicRule, PixelSize }); return((ImageServerIdentifyResult)array[0]); }