@@ -13,10 +13,10 @@ public ServiceBusAccountAttribute(string account) { }
1313 [ System . Diagnostics . DebuggerDisplayAttribute ( "{QueueOrTopicName,nq}" ) ]
1414 public sealed partial class ServiceBusAttribute : System . Attribute , Microsoft . Azure . WebJobs . IConnectionProvider
1515 {
16- public ServiceBusAttribute ( string queueOrTopicName , Microsoft . Azure . WebJobs . ServiceBus . ServiceBusEntityType serviceBusEntityType = Microsoft . Azure . WebJobs . ServiceBus . ServiceBusEntityType . Queue ) { }
16+ public ServiceBusAttribute ( string queueOrTopicName , Microsoft . Azure . WebJobs . ServiceBus . ServiceBusEntityType entityType = Microsoft . Azure . WebJobs . ServiceBus . ServiceBusEntityType . Queue ) { }
1717 public string Connection { get { throw null ; } set { } }
18+ public Microsoft . Azure . WebJobs . ServiceBus . ServiceBusEntityType EntityType { get { throw null ; } set { } }
1819 public string QueueOrTopicName { get { throw null ; } }
19- public Microsoft . Azure . WebJobs . ServiceBus . ServiceBusEntityType ServiceBusEntityType { get { throw null ; } set { } }
2020 }
2121 [ Microsoft . Azure . WebJobs . ConnectionProviderAttribute ( typeof ( Microsoft . Azure . WebJobs . ServiceBusAccountAttribute ) ) ]
2222 [ Microsoft . Azure . WebJobs . Description . BindingAttribute ]
@@ -40,8 +40,8 @@ public partial class MessageProcessor
4040 {
4141 public MessageProcessor ( Azure . Messaging . ServiceBus . ServiceBusProcessor processor ) { }
4242 protected internal Azure . Messaging . ServiceBus . ServiceBusProcessor Processor { get { throw null ; } }
43- protected internal virtual System . Threading . Tasks . Task < bool > BeginProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusMessageActions messageActions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , System . Threading . CancellationToken cancellationToken ) { throw null ; }
44- protected internal virtual System . Threading . Tasks . Task CompleteProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusMessageActions messageActions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , Microsoft . Azure . WebJobs . Host . Executors . FunctionResult result , System . Threading . CancellationToken cancellationToken ) { throw null ; }
43+ protected internal virtual System . Threading . Tasks . Task < bool > BeginProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusMessageActions actions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , System . Threading . CancellationToken cancellationToken ) { throw null ; }
44+ protected internal virtual System . Threading . Tasks . Task CompleteProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusMessageActions actions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , Microsoft . Azure . WebJobs . Host . Executors . FunctionResult result , System . Threading . CancellationToken cancellationToken ) { throw null ; }
4545 }
4646 public partial class MessagingProvider
4747 {
@@ -77,9 +77,9 @@ public ServiceBusOptions() { }
7777 public System . Func < Azure . Messaging . ServiceBus . ProcessErrorEventArgs , System . Threading . Tasks . Task > ExceptionHandler { get { throw null ; } set { } }
7878 public Newtonsoft . Json . JsonSerializerSettings JsonSerializerSettings { get { throw null ; } set { } }
7979 public System . TimeSpan MaxAutoLockRenewalDuration { get { throw null ; } set { } }
80- public int MaxBatchSize { get { throw null ; } set { } }
8180 public int MaxConcurrentCalls { get { throw null ; } set { } }
8281 public int MaxConcurrentSessions { get { throw null ; } set { } }
82+ public int MaxMessageBatchSize { get { throw null ; } set { } }
8383 public int PrefetchCount { get { throw null ; } set { } }
8484 public System . TimeSpan ? SessionIdleTimeout { get { throw null ; } set { } }
8585 public Azure . Messaging . ServiceBus . ServiceBusTransportType TransportType { get { throw null ; } set { } }
@@ -96,8 +96,8 @@ public partial class SessionMessageProcessor
9696 {
9797 public SessionMessageProcessor ( Azure . Messaging . ServiceBus . ServiceBusSessionProcessor processor ) { }
9898 protected internal Azure . Messaging . ServiceBus . ServiceBusSessionProcessor Processor { get { throw null ; } }
99- public virtual System . Threading . Tasks . Task < bool > BeginProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusSessionMessageActions sessionActions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , System . Threading . CancellationToken cancellationToken ) { throw null ; }
100- public virtual System . Threading . Tasks . Task CompleteProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusSessionMessageActions sessionActions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , Microsoft . Azure . WebJobs . Host . Executors . FunctionResult result , System . Threading . CancellationToken cancellationToken ) { throw null ; }
99+ public virtual System . Threading . Tasks . Task < bool > BeginProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusSessionMessageActions actions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , System . Threading . CancellationToken cancellationToken ) { throw null ; }
100+ public virtual System . Threading . Tasks . Task CompleteProcessingMessageAsync ( Microsoft . Azure . WebJobs . ServiceBus . ServiceBusSessionMessageActions actions , Azure . Messaging . ServiceBus . ServiceBusReceivedMessage message , Microsoft . Azure . WebJobs . Host . Executors . FunctionResult result , System . Threading . CancellationToken cancellationToken ) { throw null ; }
101101 }
102102}
103103namespace Microsoft . Extensions . Hosting
0 commit comments