Implemented interface member:
method
Invoke
System.Runtime.InteropServices._MethodBase.Invoke(System.Object, System.Object[])
359 references to Invoke
mscorlib (7)
PresentationFramework (21)
System (12)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (9)
587return (bool)shouldSerialize.Invoke(provider, new object[] { component});
608return GetMethodValue.Invoke(provider, new object[] { component});
650ResetMethodValue.Invoke(provider, new object[] { component});
694SetMethodValue.Invoke(provider, new object[] { component, value});
713return (bool)ShouldSerializeMethodValue.Invoke(provider, new object[] {component});
722return (bool)ShouldSerializeMethodValue.Invoke(provider, new object[] {component});
752return (bool)ShouldSerializeMethodValue.Invoke(component, null);
1190return (bool)ShouldSerializeMethodValue.Invoke(component, null);
1199return (bool)ShouldSerializeMethodValue.Invoke(component, null);
System.Activities (18)
System.Activities.Core.Presentation (4)
System.Activities.Presentation (5)
System.ComponentModel.DataAnnotations (1)
System.Core (2)
System.Data (12)
System.Data.Entity (121)
System\Data\SqlClient\SqlSpatialServices.Generated.cs (105)
32object result = smi_SqlGeography_Parse.Value.Invoke(null, new object[] { sqlGeographyText });
39object result = smi_SqlGeography_STGeomFromText.Value.Invoke(null, new object[] { sqlGeographyText, srid });
46object result = smi_SqlGeography_STPointFromText.Value.Invoke(null, new object[] { sqlPointText, srid });
53object result = smi_SqlGeography_STLineFromText.Value.Invoke(null, new object[] { sqlLineText, srid });
60object result = smi_SqlGeography_STPolyFromText.Value.Invoke(null, new object[] { sqlPolygonText, srid });
67object result = smi_SqlGeography_STMPointFromText.Value.Invoke(null, new object[] { sqlMultiPointText, srid });
74object result = smi_SqlGeography_STMLineFromText.Value.Invoke(null, new object[] { sqlMultiLineText, srid });
81object result = smi_SqlGeography_STMPolyFromText.Value.Invoke(null, new object[] { sqlMultiPolygonText, srid });
88object result = smi_SqlGeography_STGeomCollFromText.Value.Invoke(null, new object[] { sqlGeographyCollectionText, srid });
95object result = smi_SqlGeography_STGeomFromWKB.Value.Invoke(null, new object[] { sqlGeographyBytes, srid });
102object result = smi_SqlGeography_STGeomFromWKB.Value.Invoke(null, new object[] { sqlGeographyBytes, 4326 });
109object result = smi_SqlGeography_STPointFromWKB.Value.Invoke(null, new object[] { sqlPointBytes, srid });
116object result = smi_SqlGeography_STLineFromWKB.Value.Invoke(null, new object[] { sqlLineBytes, srid });
123object result = smi_SqlGeography_STPolyFromWKB.Value.Invoke(null, new object[] { sqlPolygonBytes, srid });
130object result = smi_SqlGeography_STMPointFromWKB.Value.Invoke(null, new object[] { sqlMultiPointBytes, srid });
137object result = smi_SqlGeography_STMLineFromWKB.Value.Invoke(null, new object[] { sqlMultiLineBytes, srid });
144object result = smi_SqlGeography_STMPolyFromWKB.Value.Invoke(null, new object[] { sqlMultiPolygonBytes, srid });
151object result = smi_SqlGeography_STGeomCollFromWKB.Value.Invoke(null, new object[] { sqlGeographyCollectionBytes, srid });
158object result = smi_SqlGeography_GeomFromGml.Value.Invoke(null, new object[] { sqlGeographyGml, 4326 });
165object result = smi_SqlGeography_GeomFromGml.Value.Invoke(null, new object[] { sqlGeographyGml, srid });
181object result = imi_SqlGeography_STGeometryType.Value.Invoke(sqlGeographyValue, new object[] { });
189object result = imi_SqlGeography_STDimension.Value.Invoke(sqlGeographyValue, new object[] { });
197object result = imi_SqlGeography_STAsBinary.Value.Invoke(sqlGeographyValue, new object[] { });
205object result = imi_SqlGeography_AsGml.Value.Invoke(sqlGeographyValue, new object[] { });
213object result = imi_SqlGeography_STAsText.Value.Invoke(sqlGeographyValue, new object[] { });
221object result = imi_SqlGeography_STIsEmpty.Value.Invoke(sqlGeographyValue, new object[] { });
230object result = imi_SqlGeography_STEquals.Value.Invoke(sqlGeographyValue1, new object[] { sqlGeographyValue2 });
239object result = imi_SqlGeography_STDisjoint.Value.Invoke(sqlGeographyValue1, new object[] { sqlGeographyValue2 });
248object result = imi_SqlGeography_STIntersects.Value.Invoke(sqlGeographyValue1, new object[] { sqlGeographyValue2 });
256object result = imi_SqlGeography_STBuffer.Value.Invoke(sqlGeographyValue, new object[] { distance });
265object result = imi_SqlGeography_STDistance.Value.Invoke(sqlGeographyValue1, new object[] { sqlGeographyValue2 });
274object result = imi_SqlGeography_STIntersection.Value.Invoke(sqlGeographyValue1, new object[] { sqlGeographyValue2 });
283object result = imi_SqlGeography_STUnion.Value.Invoke(sqlGeographyValue1, new object[] { sqlGeographyValue2 });
292object result = imi_SqlGeography_STDifference.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
301object result = imi_SqlGeography_STSymDifference.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
309object result = imi_SqlGeography_STNumGeometries.Value.Invoke(sqlGeographyValue, new object[] { });
317object result = imi_SqlGeography_STGeometryN.Value.Invoke(sqlGeographyValue, new object[] { nValue });
357object result = imi_SqlGeography_STLength.Value.Invoke(sqlGeographyValue, new object[] { });
365object result = imi_SqlGeography_STStartPoint.Value.Invoke(sqlGeographyValue, new object[] { });
373object result = imi_SqlGeography_STEndPoint.Value.Invoke(sqlGeographyValue, new object[] { });
381object result = imi_SqlGeography_STIsClosed.Value.Invoke(sqlGeographyValue, new object[] { });
389object result = imi_SqlGeography_STNumPoints.Value.Invoke(sqlGeographyValue, new object[] { });
397object result = imi_SqlGeography_STPointN.Value.Invoke(sqlGeographyValue, new object[] { nValue });
405object result = imi_SqlGeography_STArea.Value.Invoke(sqlGeographyValue, new object[] { });
412object result = smi_SqlGeometry_Parse.Value.Invoke(null, new object[] { sqlGeometryText });
419object result = smi_SqlGeometry_STGeomFromText.Value.Invoke(null, new object[] { sqlGeometryText, srid });
426object result = smi_SqlGeometry_STPointFromText.Value.Invoke(null, new object[] { sqlPointText, srid });
433object result = smi_SqlGeometry_STLineFromText.Value.Invoke(null, new object[] { sqlLineText, srid });
440object result = smi_SqlGeometry_STPolyFromText.Value.Invoke(null, new object[] { sqlPolygonText, srid });
447object result = smi_SqlGeometry_STMPointFromText.Value.Invoke(null, new object[] { sqlMultiPointText, srid });
454object result = smi_SqlGeometry_STMLineFromText.Value.Invoke(null, new object[] { sqlMultiLineText, srid });
461object result = smi_SqlGeometry_STMPolyFromText.Value.Invoke(null, new object[] { sqlMultiPolygonText, srid });
468object result = smi_SqlGeometry_STGeomCollFromText.Value.Invoke(null, new object[] { sqlGeometryCollectionText, srid });
475object result = smi_SqlGeometry_STGeomFromWKB.Value.Invoke(null, new object[] { sqlGeometryBytes, 0 });
482object result = smi_SqlGeometry_STGeomFromWKB.Value.Invoke(null, new object[] { sqlGeometryBytes, srid });
489object result = smi_SqlGeometry_STPointFromWKB.Value.Invoke(null, new object[] { sqlPointBytes, srid });
496object result = smi_SqlGeometry_STLineFromWKB.Value.Invoke(null, new object[] { sqlLineBytes, srid });
503object result = smi_SqlGeometry_STPolyFromWKB.Value.Invoke(null, new object[] { sqlPolygonBytes, srid });
510object result = smi_SqlGeometry_STMPointFromWKB.Value.Invoke(null, new object[] { sqlMultiPointBytes, srid });
517object result = smi_SqlGeometry_STMLineFromWKB.Value.Invoke(null, new object[] { sqlMultiLineBytes, srid });
524object result = smi_SqlGeometry_STMPolyFromWKB.Value.Invoke(null, new object[] { sqlMultiPolygonBytes, srid });
531object result = smi_SqlGeometry_STGeomCollFromWKB.Value.Invoke(null, new object[] { sqlGeometryCollectionBytes, srid });
538object result = smi_SqlGeometry_GeomFromGml.Value.Invoke(null, new object[] { sqlGeometryGml, 0 });
545object result = smi_SqlGeometry_GeomFromGml.Value.Invoke(null, new object[] { sqlGeometryGml, srid });
561object result = imi_SqlGeometry_STGeometryType.Value.Invoke(sqlGeometryValue, new object[] { });
569object result = imi_SqlGeometry_STDimension.Value.Invoke(sqlGeometryValue, new object[] { });
577object result = imi_SqlGeometry_STEnvelope.Value.Invoke(sqlGeometryValue, new object[] { });
585object result = imi_SqlGeometry_STAsBinary.Value.Invoke(sqlGeometryValue, new object[] { });
593object result = imi_SqlGeometry_AsGml.Value.Invoke(sqlGeometryValue, new object[] { });
601object result = imi_SqlGeometry_STAsText.Value.Invoke(sqlGeometryValue, new object[] { });
609object result = imi_SqlGeometry_STIsEmpty.Value.Invoke(sqlGeometryValue, new object[] { });
617object result = imi_SqlGeometry_STIsSimple.Value.Invoke(sqlGeometryValue, new object[] { });
625object result = imi_SqlGeometry_STBoundary.Value.Invoke(sqlGeometryValue, new object[] { });
633object result = imi_SqlGeometry_STIsValid.Value.Invoke(sqlGeometryValue, new object[] { });
642object result = imi_SqlGeometry_STEquals.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
651object result = imi_SqlGeometry_STDisjoint.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
660object result = imi_SqlGeometry_STIntersects.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
669object result = imi_SqlGeometry_STTouches.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
678object result = imi_SqlGeometry_STCrosses.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
687object result = imi_SqlGeometry_STWithin.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
696object result = imi_SqlGeometry_STContains.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
705object result = imi_SqlGeometry_STOverlaps.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
714object result = imi_SqlGeometry_STRelate.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2, matrix });
722object result = imi_SqlGeometry_STBuffer.Value.Invoke(sqlGeometryValue, new object[] { distance });
731object result = imi_SqlGeometry_STDistance.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
739object result = imi_SqlGeometry_STConvexHull.Value.Invoke(sqlGeometryValue, new object[] { });
748object result = imi_SqlGeometry_STIntersection.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
757object result = imi_SqlGeometry_STUnion.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
766object result = imi_SqlGeometry_STDifference.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
775object result = imi_SqlGeometry_STSymDifference.Value.Invoke(sqlGeometryValue1, new object[] { sqlGeometryValue2 });
783object result = imi_SqlGeometry_STNumGeometries.Value.Invoke(sqlGeometryValue, new object[] { });
791object result = imi_SqlGeometry_STGeometryN.Value.Invoke(sqlGeometryValue, new object[] { nValue });
831object result = imi_SqlGeometry_STLength.Value.Invoke(sqlGeometryValue, new object[] { });
839object result = imi_SqlGeometry_STStartPoint.Value.Invoke(sqlGeometryValue, new object[] { });
847object result = imi_SqlGeometry_STEndPoint.Value.Invoke(sqlGeometryValue, new object[] { });
855object result = imi_SqlGeometry_STIsClosed.Value.Invoke(sqlGeometryValue, new object[] { });
863object result = imi_SqlGeometry_STIsRing.Value.Invoke(sqlGeometryValue, new object[] { });
871object result = imi_SqlGeometry_STNumPoints.Value.Invoke(sqlGeometryValue, new object[] { });
879object result = imi_SqlGeometry_STPointN.Value.Invoke(sqlGeometryValue, new object[] { nValue });
887object result = imi_SqlGeometry_STArea.Value.Invoke(sqlGeometryValue, new object[] { });
895object result = imi_SqlGeometry_STCentroid.Value.Invoke(sqlGeometryValue, new object[] { });
903object result = imi_SqlGeometry_STPointOnSurface.Value.Invoke(sqlGeometryValue, new object[] { });
911object result = imi_SqlGeometry_STExteriorRing.Value.Invoke(sqlGeometryValue, new object[] { });
919object result = imi_SqlGeometry_STNumInteriorRing.Value.Invoke(sqlGeometryValue, new object[] { });
927object result = imi_SqlGeometry_STInteriorRingN.Value.Invoke(sqlGeometryValue, new object[] { nValue });
System.Data.Entity.Design (2)
System.Data.Linq (8)
System.Data.Services (27)
System\Data\Services\Providers\BasicExpandProvider.cs (6)
240.Invoke(null, new object[] { query, orderer, first, o.IsAscending });
282.Invoke(null, new object[] { query, orderer, first, o.IsAscending });
307.Invoke(null, new object[] { query, skipCount.Value, true });
314.Invoke(null, new object[] { query, takeCount.Value, false });
338.Invoke(null, new object[] { (IQueryable<TSource>)query, (Expression<Func<TSource, TKey>>)orderExpression });
352return (IQueryable)skipOrTakeMethod.Invoke(null, new object[] { (IQueryable<TSource>)query, count });
System\Data\Services\RequestUriProcessor.cs (7)
415return (IQueryable)method.Invoke(null, new object[] { query, selector });
428return (IQueryable)whereMethod.Invoke(null, new object[] { query, predicate });
1122return (IQueryable)method.Invoke(null, new object[] { query, selector });
1147return (IQueryable)method.Invoke(null, new object[] { query, selector });
1166return (IQueryable)method.Invoke(null, new object[] { query, selector });
1186return (IQueryable)method.Invoke(null, new object[] { query, selector });
1207return (IQueryable)method.Invoke(null, new object[] { query, selector });
System.Data.Services.Client (8)
System.Data.Services.Design (1)
System.Data.SqlXml (2)
System.Runtime.Serialization (2)
System.ServiceModel (7)
System.ServiceModel.Activation (2)
System.ServiceModel.Activities (1)
System.ServiceModel.WasHosting (1)
System.ServiceModel.Web (1)
System.Web (18)
System.Web.DataVisualization (12)
System.Web.DynamicData (1)
System.Web.Entity (4)
System.Web.Extensions (6)
System.Web.Mobile (1)
System.Web.Services (4)
System.Windows.Forms (7)
System.Windows.Forms.DataVisualization (12)
System.Workflow.Activities (5)
System.Workflow.ComponentModel (7)
System.Workflow.Runtime (2)
System.WorkflowServices (2)
System.Xml (9)
WindowsBase (4)