1 instantiation of ConsumerConnectionPoint
System.Web (1)
UI\WebParts\WebPartManager.cs (1)
1795connectionPoint = new ConsumerConnectionPoint(method, parameterType, type,
53 references to ConsumerConnectionPoint
System.Web (53)
UI\WebParts\ConnectionsZone.cs (15)
76private ConsumerConnectionPoint _pendingConsumerConnectionPoint; 638ConsumerConnectionPoint consumerConnectionPoint = 820foreach (ConsumerConnectionPoint consumerConnectionPoint in consumerConnectionPoints) { 1085foreach (ConsumerConnectionPoint consumerConnectionPoint in WebPartManager.GetConsumerConnectionPoints(consumer)) { 1107private IDictionary GetValidProviders(WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, 1406foreach (ConsumerConnectionPoint consumer in consumers) { 1575foreach (ConsumerConnectionPoint consumer in consumers) { 1833ConsumerConnectionPoint consumerConnectionPoint = connection.ConsumerConnectionPoint; 1869ConsumerConnectionPoint consumerConnectionPoint = 2153ConsumerConnectionPoint currentConsumerConnectionPoint = null; 2181foreach (ConsumerConnectionPoint consumerConnectionPoint in consumerConnectionPoints) { 2346private ConsumerConnectionPoint _connectionPoint; 2348public ConsumerInfo(WebPart webPart, ConsumerConnectionPoint connectionPoint) : base(webPart) { 2352public ConsumerInfo(WebPart webPart, ConsumerConnectionPoint connectionPoint, 2357public ConsumerConnectionPoint ConnectionPoint {
UI\WebParts\ConsumerConnectionPoint.cs (1)
20ConstructorInfo constructor = typeof(ConsumerConnectionPoint).GetConstructors()[0];
UI\WebParts\ConsumerConnectionPointCollection.cs (10)
29ConsumerConnectionPoint point = obj as ConsumerConnectionPoint; 45public ConsumerConnectionPoint Default { 51public ConsumerConnectionPoint this[int index] { 53return (ConsumerConnectionPoint)InnerList[index]; 57public ConsumerConnectionPoint this[string id] { 59return ((_ids != null) ? (ConsumerConnectionPoint)_ids[id] : null); 63public bool Contains(ConsumerConnectionPoint connectionPoint) { 67public int IndexOf(ConsumerConnectionPoint connectionPoint) { 71public void CopyTo(ConsumerConnectionPoint[] array, int index) {
UI\WebParts\WebPartConnection.cs (2)
63public ConsumerConnectionPoint ConsumerConnectionPoint { 276ConsumerConnectionPoint consumerConnectionPoint = ConsumerConnectionPoint;
UI\WebParts\WebPartConnectionsCancelEventArgs.cs (4)
16private ConsumerConnectionPoint _consumerConnectionPoint; 20WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint) { 29WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, 47public ConsumerConnectionPoint ConsumerConnectionPoint {
UI\WebParts\WebPartConnectionsEventArgs.cs (4)
15private ConsumerConnectionPoint _consumerConnectionPoint; 19WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint) { 28WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, 46public ConsumerConnectionPoint ConsumerConnectionPoint {
UI\WebParts\WebPartManager.cs (15)
1186WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint) { 1191WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, 1198WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, 1664ConsumerConnectionPoint consumerConnectionPoint = connection.ConsumerConnectionPoint; 1677WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint) { 1682WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, 1793ConsumerConnectionPoint connectionPoint; 1801connectionPoint = (ConsumerConnectionPoint)Activator.CreateInstance(connectionPointType, args); 2022ConsumerConnectionPoint consumerConnectionPoint = connection.ConsumerConnectionPoint; 2334internal ConsumerConnectionPoint GetConsumerConnectionPoint(WebPart webPart, string connectionPointID) { 2600internal WebPartConnection GetConnectionForConsumer(WebPart consumer, ConsumerConnectionPoint connectionPoint) { 2601ConsumerConnectionPoint actualConnectionPoint = connectionPoint; 2611ConsumerConnectionPoint c = 2621ConsumerConnectionPoint c = 3239internal bool IsConsumerConnected(WebPart consumer, ConsumerConnectionPoint connectionPoint) {
UI\WebParts\WebPartUtil.cs (2)
46Type baseType = isConsumer ? typeof(ConsumerConnectionPoint) : typeof(ProviderConnectionPoint); 51Type[] constructorTypes = isConsumer ? ConsumerConnectionPoint.ConstructorTypes :