В WCF RIA Services есть класс AuthenticationBase
. Определение класса выглядит следующим образом:
// assume using System.ServiceModel.DomainServices.Server.ApplicationServices
public abstract class AuthenticationBase<T>
: DomainService, IAuthentication<T>
where T : IUser, new()
Что означает new()
в этом коде?