Show / Hide Table of Contents

Class AbpHubContext

Inheritance
object
AbpHubContext
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.AspNetCore.SignalR
Assembly: Volo.Abp.AspNetCore.SignalR.dll
Syntax
public class AbpHubContext

Constructors

AbpHubContext(IServiceProvider, Hub, MethodInfo, IReadOnlyList<object>)

Declaration
public AbpHubContext(IServiceProvider serviceProvider, Hub hub, MethodInfo hubMethod, IReadOnlyList<object> hubMethodArguments)
Parameters
Type Name Description
System.IServiceProvider serviceProvider
Microsoft.AspNetCore.SignalR.Hub hub
System.Reflection.MethodInfo hubMethod
System.Collections.Generic.IReadOnlyList<T><object> hubMethodArguments

Properties

Hub

Declaration
public Hub Hub { get; }
Property Value
Type Description
Microsoft.AspNetCore.SignalR.Hub

HubMethod

Declaration
public MethodInfo HubMethod { get; }
Property Value
Type Description
System.Reflection.MethodInfo

HubMethodArguments

Declaration
public IReadOnlyList<object> HubMethodArguments { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<T><object>

ServiceProvider

Declaration
public IServiceProvider ServiceProvider { get; }
Property Value
Type Description
System.IServiceProvider

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In This Article
Back to top Powered by Volosoft