Skip to content

Foundation macOS xcode14.1 b1

Chris Hamons edited this page Oct 11, 2022 · 3 revisions

#Foundation.framework https://github.com/xamarin/xamarin-macios/pull/16249

diff -ruN /Applications/Xcode_14.0.0-beta6.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode_14.1.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h
--- /Applications/Xcode_14.0.0-beta6.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h	2022-08-06 03:26:36.000000000 -0400
+++ /Applications/Xcode_14.1.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h	2022-09-09 02:09:54.000000000 -0400
@@ -350,6 +350,13 @@
  */
 @property (readonly) NSURLRequestAttribution attribution API_AVAILABLE(macos(12.0), ios(15.0), watchos(8.0), tvos(15.0));
 
+/*!
+ @abstract sets whether a request is required to do DNSSEC validation during DNS lookup.
+ @discussion YES, if the DNS lookup for this request should require DNSSEC validation,
+ No otherwise. Defaults to NO.
+ */
+@property (readonly) BOOL requiresDNSSECValidation API_AVAILABLE(macos(13.0), ios(16.1), watchos(9.1), tvos(16.1));
+
 @end
 
 
@@ -463,19 +470,19 @@
 @property BOOL assumesHTTP3Capable API_AVAILABLE(macos(11.3), ios(14.5), watchos(7.4), tvos(14.5));
 
 /*!
- @abstract sets whether a request is required to do DNSSEC validation during DNS lookup.
- @discussion YES, if the DNS lookup for this request should require DNSSEC validation,
- No otherwise. Defaults to NO.
- */
-@property BOOL requiresDNSSECValidation API_AVAILABLE(macos(13.0), ios(16.0), watchos(9.0), tvos(16.0));
-
-/*!
  @abstract Sets the NSURLRequestAttribution to associate with this request.
  @discussion Set to NSURLRequestAttributionUser if the URL was specified by the
  user. Defaults to NSURLRequestAttributionDeveloper.
  */
 @property NSURLRequestAttribution attribution API_AVAILABLE(macos(12.0), ios(15.0), watchos(8.0), tvos(15.0));
 
+/*!
+ @abstract sets whether a request is required to do DNSSEC validation during DNS lookup.
+ @discussion YES, if the DNS lookup for this request should require DNSSEC validation,
+ No otherwise. Defaults to NO.
+ */
+@property BOOL requiresDNSSECValidation API_AVAILABLE(macos(13.0), ios(16.1), watchos(9.1), tvos(16.1));
+
 @end
 
 
Clone this wiki locally