In the project `Microsoft.AspNetCore.Owin`, `OwinFeatureCollection` implements `IEnumerable.GetEnumerator()` which looks good. ```C# IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } public IEnumerator<KeyValuePair<Type, object>> GetEnumerator() { ... } ``` Why doesn't `OwinEnvironment` implements `IEnumerable.GetEnumerator()` same as `OwinFeatureCollection`? Now (dev branch, Commit 2cafa432) it just ```C# IEnumerator IEnumerable.GetEnumerator() { throw new NotImplementedException(); } ```
In the project
Microsoft.AspNetCore.Owin,OwinFeatureCollectionimplementsIEnumerable.GetEnumerator()which looks good.Why doesn't
OwinEnvironmentimplementsIEnumerable.GetEnumerator()same asOwinFeatureCollection? Now (dev branch, Commit 2cafa43) it just