Fei Xu
Fei Xu
` var contact = new Contact { GivenName = "Talbott", Surname = "Cady", BusinessAddress = null }; await graphServiceClient.Me.Contacts.PostAsync(contact); ` if we run the post contact with set either BusinessAddress,HomeAddress...
When Parameters.Get("SENT-BY") return null. when read Organizer.SentBy will throw exception. ` public virtual Uri SentBy { get => new Uri(this.Parameters.Get("SENT-BY")); } ` should be something like ` public virtual Uri...
Add support for register service with Interceptor and multiple decorator, apply Interceptor to the outermost decorator,
These changes introduce new methods to register service middleware in the Autofac library. Also, a new test has been added to Autofac.Specification.Test to ensure that the middleware is getting invoked...
Register service with Interceptor, then register multiple decorator, auto apply Interceptor to the outermost decorator Actually this is the default behaviors when I use autofac 4.x. after upgrade version 8.0.0,...