Skip to content

Commit

Permalink
chore: follow convention for removing code in /Generated/*.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
spouliot committed Nov 8, 2024
1 parent c781c95 commit 1cc7269
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,14 @@ public bool TryAppendWithoutValidation(string name, string value)
// Forced skipping of method Windows.Web.Http.Headers.HttpRequestHeaderCollection.First()
// Skipping already declared method Windows.Web.Http.Headers.HttpRequestHeaderCollection.ToString()
// Processing: System.Collections.Generic.IDictionary<string, string>
#if false
// DeclaringType: System.Collections.Generic.IDictionary<string, string>
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "IS_UNIT_TESTS", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public void Add(string key, string value)
{
throw new global::System.NotSupportedException();
}
#endif
// Skipping already implement System.Collections.Generic.IDictionary<string, string>.this[string]
#if __ANDROID__ || __IOS__ || IS_UNIT_TESTS || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "IS_UNIT_TESTS", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
Expand Down Expand Up @@ -247,6 +255,14 @@ public void CopyTo(global::System.Collections.Generic.KeyValuePair<string, strin
// Skipping already implement System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, string>>.Count
// Skipping already implement System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, string>>.IsReadOnly
// Processing: System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>
#if false
// DeclaringType: System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "IS_UNIT_TESTS", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public global::System.Collections.Generic.IEnumerator<global::System.Collections.Generic.KeyValuePair<string, string>> GetEnumerator()
{
throw new global::System.NotSupportedException();
}
#endif
// Processing: System.Collections.IEnumerable
#if __ANDROID__ || __IOS__ || IS_UNIT_TESTS || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
// DeclaringType: System.Collections.IEnumerable
Expand Down

0 comments on commit 1cc7269

Please sign in to comment.