About the Server spatial query COM utility Sample
[C#]
VegResults_VBNet.cs
[Visual Basic .NET]
VegResults_VBNet.vb
Imports Microsoft.VisualBasic Imports System Imports System.Collections.Generic Imports System.Text Imports System.Runtime.InteropServices Imports System.EnterpriseServices Imports ESRI.ArcGIS.Carto Imports ESRI.ArcGIS.Geodatabase <GuidAttribute("12B930FB-1B16-4567-954A-B12044ECB349")> _ Public Interface IVegResults_VBNet Property ResGraphics() As IGraphicElements Property Stats() As IRecordSet End Interface Namespace VegCOM_VBNet <AutomationProxy(True), ClassInterface(ClassInterfaceType.None), GuidAttribute("E3DBA8F5-B093-4dc6-9045-8682E0332708")> _ Public Class VegResults_VBNet Inherits ServicedComponent Implements IVegResults_VBNet Private m_resGraphics As IGraphicElements Private m_resStats As IRecordSet Public Property ResGraphics() As IGraphicElements Implements IVegResults_VBNet.ResGraphics Get Return m_resGraphics End Get Set(ByVal value As IGraphicElements) m_resGraphics = TryCast(value, IGraphicElements) End Set End Property Public Property Stats() As IRecordSet Implements IVegResults_VBNet.Stats Get Return m_resStats End Get Set(ByVal value As IRecordSet) m_resStats = TryCast(value, IRecordSet) End Set End Property End Class End Namespace