├── .DS_Store ├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── Avalonia.WebView.sln ├── Build ├── Directory.Packages.targets ├── Directory.build.common.props ├── Directory.build.common.targets ├── Directory.build.operation.common.props ├── Directory.webview.android.common.targets ├── Directory.webview.blazor.common.targets ├── Directory.webview.desktop.common.targets └── Directory.webview.ios.common.targets ├── Directory.Build.props ├── Directory.Packages.props ├── Directory.build.targets ├── Directory.buildcpp.props ├── LICENSE ├── Nuget.bat ├── Packages ├── BlazorWebView.Avalonia │ └── BlazorWebView.Avalonia.csproj ├── WebView.Avalonia │ └── WebView.Avalonia.csproj └── webview@avalonia-logo.png ├── README.md ├── README.zh-CN.md ├── Source ├── .DS_Store ├── Avalonia.BlazorWebView │ ├── Avalonia.BlazorWebView.csproj │ ├── AvaloniaBlazorWebViewBuilder.cs │ ├── BlazorWebView-AvaloniaProperty.cs │ ├── BlazorWebView-Core.cs │ ├── BlazorWebView-Events.cs │ ├── BlazorWebView-Host-AvaloniaProperty.cs │ ├── BlazorWebView-Override.cs │ ├── BlazorWebView-VirtualView.cs │ ├── BlazorWebView-VirtualViewCallBack.cs │ ├── BlazorWebView-WebViewControl.cs │ ├── BlazorWebView.cs │ ├── Common │ │ ├── AvaloniaResourceFileProvider.cs │ │ └── StaticContentHotReloadManager.cs │ ├── Components │ │ ├── BlazorRootComponent.cs │ │ └── BlazorRootComponentsCollection.cs │ ├── Configurations │ │ ├── BlazorWebViewSetting.cs │ │ └── JsComponentConfigration.cs │ ├── Core │ │ ├── AutoCloseOnReadCompleteStream.cs │ │ ├── AvaloniaDispatcher.cs │ │ ├── AvaloniaWebViewManager.cs │ │ ├── BlazorWebViewApplication.cs │ │ └── BlazorWebViewApplicationBuilder.cs │ ├── Extensions │ │ └── UriExtensions.cs │ ├── IBlazorWebViewApplication.cs │ ├── IBlazorWebViewApplicationBuilder.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── _globalusing.cs ├── Avalonia.WebView │ ├── Avalonia.WebView.csproj │ ├── AvaloniaWebViewBuilder.cs │ ├── Core │ │ └── IEmptyView.cs │ ├── Helpers │ │ └── BorderRenderHelper.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── _globalusing.cs │ ├── WebView-AvaloniaProperty.cs │ ├── WebView-Core.cs │ ├── WebView-Events.cs │ ├── WebView-Host-AvaloniaProperty.cs │ ├── WebView-Override.cs │ ├── WebView-VirtualView.cs │ ├── WebView-VirtualViewCallBack.cs │ ├── WebView-WebViewControl.cs │ └── WebView.cs ├── AvaloniaWebView.Shared │ ├── AppBuilderExtensions.cs │ ├── AvaloniaWebView.Shared.csproj │ ├── Core │ │ └── AvaloniaHandlerCollection.cs │ ├── Extensions │ │ └── AvaloniaCommonExtensions.cs │ ├── Handlers │ │ ├── ViewHandler.cs │ │ └── ViewHandler@T.cs │ ├── IAvaloniaHandlerCollection.cs │ ├── IAvaloniaHandlerCollectionExtensions.cs │ ├── IPropertyMapper.cs │ ├── IPropertyMapper@T.cs │ ├── IViewHandler.cs │ └── IViewHandlerProvider.cs ├── DryIoc.Shared │ ├── DryIoc.Shared.csproj │ └── Extensions │ │ ├── DryIocExtensions.cs │ │ ├── DryIocExtensionsEx.cs │ │ ├── DryIocExtensionsTx.cs │ │ └── RulesExtensions.cs ├── Platform │ ├── Android │ │ └── Avalonia.WebView.Android │ │ │ ├── AppBuilderExtensions.cs │ │ │ ├── Avalonia.WebView.Android.csproj │ │ │ ├── BlazorWebViewHandlerProvider.cs │ │ │ ├── Clients │ │ │ ├── AvaloniaWebChromeClient.cs │ │ │ └── AvaloniaWebViewClient.cs │ │ │ ├── Common │ │ │ └── AndroidAssetFileProvider.cs │ │ │ ├── Core │ │ │ ├── AndroidWebViewCore-assist.cs │ │ │ ├── AndroidWebViewCore-core.cs │ │ │ ├── AndroidWebViewCore-event.cs │ │ │ ├── AndroidWebViewCore-override.cs │ │ │ └── AndroidWebViewCore.cs │ │ │ ├── Handlers │ │ │ ├── BlazorWebMessageCallback.cs │ │ │ └── JavaScriptValueCallback.cs │ │ │ ├── Helpers │ │ │ └── BlazorScriptHelper.cs │ │ │ ├── Properties │ │ │ └── _globalusing.cs │ │ │ ├── ViewHandlerProvider.cs │ │ │ └── WebViewHandler.cs │ ├── Desktop │ │ ├── Avalonia.WebView.Desktop │ │ │ ├── AppBuilderExtensions.cs │ │ │ └── Avalonia.WebView.Desktop.csproj │ │ └── Avalonia.WebView.DesktopX │ │ │ ├── AppBuilderExtensions.cs │ │ │ └── Avalonia.WebView.DesktopX.csproj │ ├── Linux │ │ ├── Avalonia.WebView.Linux │ │ │ ├── AppBuilderExtensions.cs │ │ │ ├── Avalonia.WebView.Linux.csproj │ │ │ ├── BlazorWebViewHandlerProvider.cs │ │ │ ├── Core │ │ │ │ ├── LinuxWebViewCore-assist.cs │ │ │ │ ├── LinuxWebViewCore-core.cs │ │ │ │ ├── LinuxWebViewCore-event.cs │ │ │ │ ├── LinuxWebViewCore-override.cs │ │ │ │ └── LinuxWebViewCore.cs │ │ │ ├── Handlers │ │ │ │ └── JavaScriptValueCallback.cs │ │ │ ├── Helpers │ │ │ │ └── BlazorScriptHelper.cs │ │ │ ├── Properties │ │ │ │ └── _globalusing.cs │ │ │ ├── ViewHandlerProvider.cs │ │ │ └── WebViewHandler.cs │ │ └── Linux.WebView.Core │ │ │ ├── Core │ │ │ ├── LinuxApplication.cs │ │ │ └── LinuxDispatcher.cs │ │ │ ├── Extensions │ │ │ └── GtkWindowExtesnsions.cs │ │ │ ├── ILinuxApplication.cs │ │ │ ├── ILinuxDispatcher.cs │ │ │ ├── Interoperates │ │ │ ├── GSList.cs │ │ │ ├── GtkApi.cs │ │ │ ├── Interop_gdk.cs │ │ │ ├── Interop_gdk_x11.cs │ │ │ ├── Interop_glib.cs │ │ │ ├── Interop_gobject.cs │ │ │ ├── Interop_gtk.cs │ │ │ ├── Interop_webkit.cs │ │ │ ├── LibraryLoader.cs │ │ │ └── gLibrary.cs │ │ │ ├── Linux.WebView.Core.csproj │ │ │ ├── LinuxApplicationBuilder.cs │ │ │ ├── LinuxApplicationManager.cs │ │ │ └── Properties │ │ │ └── _globalusing.cs │ ├── Mac │ │ ├── Avalonia.WebView.Mac │ │ │ ├── AppBuilderExtensions.cs │ │ │ ├── Avalonia.WebView.Mac.csproj │ │ │ ├── BlazorWebViewHandlerProvider.cs │ │ │ ├── Core │ │ │ │ ├── MacWebViewCore-assist.cs │ │ │ │ ├── MacWebViewCore-core.cs │ │ │ │ ├── MacWebViewCore-event.cs │ │ │ │ ├── MacWebViewCore-override.cs │ │ │ │ └── MacWebViewCore.cs │ │ │ ├── Delegates │ │ │ │ ├── WebViewFrameLoadDelegate.cs │ │ │ │ ├── WebViewNavigationDelegate.cs │ │ │ │ ├── WebViewResourceLoadDelegate.cs │ │ │ │ └── WebViewUIDelegate.cs │ │ │ ├── Helpers │ │ │ │ └── BlazorScriptHelper.cs │ │ │ ├── Properties │ │ │ │ └── _globalusing.cs │ │ │ ├── ViewHandlerProvider.cs │ │ │ └── WebViewHandler.cs │ │ ├── Avalonia.WebView.MacCatalyst │ │ │ ├── AppBuilderExtensions.cs │ │ │ ├── Avalonia.WebView.MacCatalyst.csproj │ │ │ ├── BlazorWebViewHandlerProvider.cs │ │ │ ├── Core │ │ │ │ ├── MacCatalystWebViewCore-assists.cs │ │ │ │ ├── MacCatalystWebViewCore-core.cs │ │ │ │ ├── MacCatalystWebViewCore-event.cs │ │ │ │ ├── MacCatalystWebViewCore-override.cs │ │ │ │ └── MacCatalystWebViewCore.cs │ │ │ ├── Delegates │ │ │ │ ├── WebViewNavigationDelegate.cs │ │ │ │ └── WebViewUIDelegate.cs │ │ │ ├── Handlers │ │ │ │ ├── SchemeHandler.cs │ │ │ │ └── WebViewScriptMessageHandler.cs │ │ │ ├── Helpers │ │ │ │ └── BlazorScriptHelper.cs │ │ │ ├── Properties │ │ │ │ └── _globalusing.cs │ │ │ ├── ViewHandlerProvider.cs │ │ │ └── WebViewHandler.cs │ │ └── Xamarin.Mac │ │ │ ├── AVFoundation │ │ │ ├── AVAsset.cs │ │ │ ├── AVAssetExportSession.cs │ │ │ ├── AVAssetExportSessionStatus.cs │ │ │ ├── AVAssetImageGenerator.cs │ │ │ ├── AVAssetImageGeneratorCompletionHandler.cs │ │ │ ├── AVAssetImageGeneratorResult.cs │ │ │ ├── AVAssetReader.cs │ │ │ ├── AVAssetReaderAudioMixOutput.cs │ │ │ ├── AVAssetReaderOutput.cs │ │ │ ├── AVAssetReaderStatus.cs │ │ │ ├── AVAssetReaderTrackOutput.cs │ │ │ ├── AVAssetReaderVideoCompositionOutput.cs │ │ │ ├── AVAssetReferenceRestrictions.cs │ │ │ ├── AVAssetTrack.cs │ │ │ ├── AVAssetTrackSegment.cs │ │ │ ├── AVAssetWriter.cs │ │ │ ├── AVAssetWriterInput.cs │ │ │ ├── AVAssetWriterInputPixelBufferAdaptor.cs │ │ │ ├── AVAssetWriterStatus.cs │ │ │ ├── AVAsynchronousKeyValueLoading.cs │ │ │ ├── AVAudioMix.cs │ │ │ ├── AVAudioMixInputParameters.cs │ │ │ ├── AVAudioPlayer.cs │ │ │ ├── AVAudioPlayerDelegate.cs │ │ │ ├── AVAudioPlayerSettings.cs │ │ │ ├── AVAudioQuality.cs │ │ │ ├── AVAudioRecorder.cs │ │ │ ├── AVAudioRecorderDelegate.cs │ │ │ ├── AVAudioRecorderSettings.cs │ │ │ ├── AVAudioSessionCategoryOptions.cs │ │ │ ├── AVAudioSessionFlags.cs │ │ │ ├── AVAudioSessionInterruptionFlags.cs │ │ │ ├── AVAudioSessionInterruptionOptions.cs │ │ │ ├── AVAudioSessionInterruptionType.cs │ │ │ ├── AVAudioSessionPortOverride.cs │ │ │ ├── AVAudioSessionRouteChangeReason.cs │ │ │ ├── AVAudioSessionSetActiveOptions.cs │ │ │ ├── AVAudioSettings.cs │ │ │ ├── AVCaptureAudioChannel.cs │ │ │ ├── AVCaptureAudioDataOutput.cs │ │ │ ├── AVCaptureAudioDataOutputSampleBufferDelegate.cs │ │ │ ├── AVCaptureCompletionHandler.cs │ │ │ ├── AVCaptureConnection.cs │ │ │ ├── AVCaptureDevice.cs │ │ │ ├── AVCaptureDeviceInput.cs │ │ │ ├── AVCaptureDevicePosition.cs │ │ │ ├── AVCaptureDeviceTransportControlsPlaybackMode.cs │ │ │ ├── AVCaptureExposureMode.cs │ │ │ ├── AVCaptureFileOutput.cs │ │ │ ├── AVCaptureFileOutputRecordingDelegate.cs │ │ │ ├── AVCaptureFlashMode.cs │ │ │ ├── AVCaptureFocusMode.cs │ │ │ ├── AVCaptureInput.cs │ │ │ ├── AVCaptureInputPort.cs │ │ │ ├── AVCaptureMovieFileOutput.cs │ │ │ ├── AVCaptureOutput.cs │ │ │ ├── AVCaptureSession.cs │ │ │ ├── AVCaptureSessionRuntimeErrorEventArgs.cs │ │ │ ├── AVCaptureStillImageOutput.cs │ │ │ ├── AVCaptureTorchMode.cs │ │ │ ├── AVCaptureVideoDataOutput.cs │ │ │ ├── AVCaptureVideoDataOutputSampleBufferDelegate.cs │ │ │ ├── AVCaptureVideoOrientation.cs │ │ │ ├── AVCaptureVideoPreviewLayer.cs │ │ │ ├── AVCaptureWhiteBalanceMode.cs │ │ │ ├── AVCategoryEventArgs.cs │ │ │ ├── AVChannelsEventArgs.cs │ │ │ ├── AVCompletion.cs │ │ │ ├── AVCompletionHandler.cs │ │ │ ├── AVComposition.cs │ │ │ ├── AVCompositionTrack.cs │ │ │ ├── AVCompositionTrackSegment.cs │ │ │ ├── AVError.cs │ │ │ ├── AVErrorEventArgs.cs │ │ │ ├── AVFileType.cs │ │ │ ├── AVKeyValueStatus.cs │ │ │ ├── AVMediaCharacteristic.cs │ │ │ ├── AVMediaType.cs │ │ │ ├── AVMetadata.cs │ │ │ ├── AVMetadataItem.cs │ │ │ ├── AVMutableAudioMix.cs │ │ │ ├── AVMutableAudioMixInputParameters.cs │ │ │ ├── AVMutableComposition.cs │ │ │ ├── AVMutableCompositionTrack.cs │ │ │ ├── AVMutableMetadataItem.cs │ │ │ ├── AVMutableTimedMetadataGroup.cs │ │ │ ├── AVMutableVideoComposition.cs │ │ │ ├── AVMutableVideoCompositionInstruction.cs │ │ │ ├── AVMutableVideoCompositionLayerInstruction.cs │ │ │ ├── AVPlayer.cs │ │ │ ├── AVPlayerActionAtItemEnd.cs │ │ │ ├── AVPlayerItem.cs │ │ │ ├── AVPlayerItemAccessLog.cs │ │ │ ├── AVPlayerItemAccessLogEvent.cs │ │ │ ├── AVPlayerItemErrorEventArgs.cs │ │ │ ├── AVPlayerItemErrorLog.cs │ │ │ ├── AVPlayerItemErrorLogEvent.cs │ │ │ ├── AVPlayerItemOutput.cs │ │ │ ├── AVPlayerItemOutputPullDelegate.cs │ │ │ ├── AVPlayerItemStatus.cs │ │ │ ├── AVPlayerItemTrack.cs │ │ │ ├── AVPlayerItemVideoOutput.cs │ │ │ ├── AVPlayerLayer.cs │ │ │ ├── AVPlayerStatus.cs │ │ │ ├── AVQueuePlayer.cs │ │ │ ├── AVSampleRateEventArgs.cs │ │ │ ├── AVStatusEventArgs.cs │ │ │ ├── AVTimeHandler.cs │ │ │ ├── AVTimedMetadataGroup.cs │ │ │ ├── AVUrlAsset.cs │ │ │ ├── AVUrlAssetOptions.cs │ │ │ ├── AVVideo.cs │ │ │ ├── AVVideoCleanApertureSettings.cs │ │ │ ├── AVVideoCodec.cs │ │ │ ├── AVVideoCodecSettings.cs │ │ │ ├── AVVideoComposition.cs │ │ │ ├── AVVideoCompositionCoreAnimationTool.cs │ │ │ ├── AVVideoCompositionInstruction.cs │ │ │ ├── AVVideoCompositionLayerInstruction.cs │ │ │ ├── AVVideoCompositionValidationHandling.cs │ │ │ ├── AVVideoFieldMode.cs │ │ │ ├── AVVideoPixelAspectRatioSettings.cs │ │ │ ├── AVVideoProfileLevelH264.cs │ │ │ ├── AVVideoScalingMode.cs │ │ │ ├── AVVideoScalingModeKey.cs │ │ │ ├── AVVideoSettings.cs │ │ │ ├── AVVideoSettingsCompressed.cs │ │ │ ├── AVVideoSettingsUncompressed.cs │ │ │ ├── AudioSettings.cs │ │ │ ├── InternalAVAudioPlayerDelegate.cs │ │ │ └── InternalAVAudioRecorderDelegate.cs │ │ │ ├── AddressBook │ │ │ ├── ABAddressBook.cs │ │ │ ├── ABAddressBookError.cs │ │ │ ├── ABAuthorizationStatus.cs │ │ │ ├── ABGroup.cs │ │ │ ├── ABGroupProperty.cs │ │ │ ├── ABLabel.cs │ │ │ ├── ABMultiValue.cs │ │ │ ├── ABMultiValueEntry.cs │ │ │ ├── ABMutableDateMultiValue.cs │ │ │ ├── ABMutableDictionaryMultiValue.cs │ │ │ ├── ABMutableMultiValue.cs │ │ │ ├── ABMutableStringMultiValue.cs │ │ │ ├── ABPerson.cs │ │ │ ├── ABPersonAddressKey.cs │ │ │ ├── ABPersonCompositeNameFormat.cs │ │ │ ├── ABPersonDateLabel.cs │ │ │ ├── ABPersonImageFormat.cs │ │ │ ├── ABPersonInstantMessageKey.cs │ │ │ ├── ABPersonInstantMessageService.cs │ │ │ ├── ABPersonKind.cs │ │ │ ├── ABPersonKindId.cs │ │ │ ├── ABPersonPhoneLabel.cs │ │ │ ├── ABPersonProperty.cs │ │ │ ├── ABPersonPropertyId.cs │ │ │ ├── ABPersonRelatedNamesLabel.cs │ │ │ ├── ABPersonSocialProfile.cs │ │ │ ├── ABPersonSocialProfileService.cs │ │ │ ├── ABPersonSortBy.cs │ │ │ ├── ABPersonUrlLabel.cs │ │ │ ├── ABPropertyType.cs │ │ │ ├── ABRecord.cs │ │ │ ├── ABRecordType.cs │ │ │ ├── ABSource.cs │ │ │ ├── ABSourceProperty.cs │ │ │ ├── ABSourcePropertyId.cs │ │ │ ├── ABSourceType.cs │ │ │ ├── ExternalChangeEventArgs.cs │ │ │ ├── InitConstants.cs │ │ │ ├── InstantMessageService.cs │ │ │ ├── PersonAddress.cs │ │ │ └── SocialProfile.cs │ │ │ ├── AppKit │ │ │ ├── ActionDispatcher.cs │ │ │ ├── AppKitFramework.cs │ │ │ ├── AppKitSynchronizationContext.cs │ │ │ ├── AppKitThreadAccessException.cs │ │ │ ├── DrawerShouldCloseDelegate.cs │ │ │ ├── DrawerShouldOpenDelegate.cs │ │ │ ├── DrawerWillResizeContentsDelegate.cs │ │ │ ├── GlobalEventHandler.cs │ │ │ ├── INSValidatedUserInterfaceItem.cs │ │ │ ├── LocalEventHandler.cs │ │ │ ├── NSActionCell.cs │ │ │ ├── NSAlert.cs │ │ │ ├── NSAlertButtonReturn.cs │ │ │ ├── NSAlertDelegate.cs │ │ │ ├── NSAlertDidEndDispatcher.cs │ │ │ ├── NSAlertPredicate.cs │ │ │ ├── NSAlertStyle.cs │ │ │ ├── NSAlertType.cs │ │ │ ├── NSAnimation.cs │ │ │ ├── NSAnimationBlockingMode.cs │ │ │ ├── NSAnimationContext.cs │ │ │ ├── NSAnimationCurve.cs │ │ │ ├── NSAnimationDelegate.cs │ │ │ ├── NSAnimationEffect.cs │ │ │ ├── NSAnimationEventArgs.cs │ │ │ ├── NSAnimationPredicate.cs │ │ │ ├── NSAnimationProgress.cs │ │ │ ├── NSAnimationProgressMarkEventArgs.cs │ │ │ ├── NSAppearance.cs │ │ │ ├── NSApplication.cs │ │ │ ├── NSApplicationActivationOptions.cs │ │ │ ├── NSApplicationActivationPolicy.cs │ │ │ ├── NSApplicationDelegate.cs │ │ │ ├── NSApplicationDelegateReply.cs │ │ │ ├── NSApplicationDidFinishLaunchingEventArgs.cs │ │ │ ├── NSApplicationError.cs │ │ │ ├── NSApplicationFile.cs │ │ │ ├── NSApplicationFileCommand.cs │ │ │ ├── NSApplicationFilesEventArgs.cs │ │ │ ├── NSApplicationLayoutDirection.cs │ │ │ ├── NSApplicationMenu.cs │ │ │ ├── NSApplicationPredicate.cs │ │ │ ├── NSApplicationPresentationOptions.cs │ │ │ ├── NSApplicationPrint.cs │ │ │ ├── NSApplicationPrintReply.cs │ │ │ ├── NSApplicationRegisterEventArgs.cs │ │ │ ├── NSApplicationReopen.cs │ │ │ ├── NSApplicationSelection.cs │ │ │ ├── NSApplicationTerminateReply.cs │ │ │ ├── NSApplicationTermination.cs │ │ │ ├── NSArrayController.cs │ │ │ ├── NSBackgroundStyle.cs │ │ │ ├── NSBackingStore.cs │ │ │ ├── NSBezelStyle.cs │ │ │ ├── NSBezierPath.cs │ │ │ ├── NSBezierPathElement.cs │ │ │ ├── NSBitmapFormat.cs │ │ │ ├── NSBitmapImageFileType.cs │ │ │ ├── NSBitmapImageRep.cs │ │ │ ├── NSBorderType.cs │ │ │ ├── NSBox.cs │ │ │ ├── NSBoxType.cs │ │ │ ├── NSBrowser.cs │ │ │ ├── NSBrowserCell.cs │ │ │ ├── NSBrowserColumnResizingType.cs │ │ │ ├── NSBrowserDelegate.cs │ │ │ ├── NSBrowserDropOperation.cs │ │ │ ├── NSButton.cs │ │ │ ├── NSButtonCell.cs │ │ │ ├── NSButtonType.cs │ │ │ ├── NSCIImageRep.cs │ │ │ ├── NSCachedImageRep.cs │ │ │ ├── NSCell.cs │ │ │ ├── NSCellAttribute.cs │ │ │ ├── NSCellHit.cs │ │ │ ├── NSCellImagePosition.cs │ │ │ ├── NSCellMask.cs │ │ │ ├── NSCellStateValue.cs │ │ │ ├── NSCellType.cs │ │ │ ├── NSClipView.cs │ │ │ ├── NSCoderEventArgs.cs │ │ │ ├── NSCollectionView.cs │ │ │ ├── NSCollectionViewDelegate.cs │ │ │ ├── NSCollectionViewDropOperation.cs │ │ │ ├── NSCollectionViewItem.cs │ │ │ ├── NSColor.cs │ │ │ ├── NSColorList.cs │ │ │ ├── NSColorPanel.cs │ │ │ ├── NSColorPanelFlags.cs │ │ │ ├── NSColorPanelMode.cs │ │ │ ├── NSColorPicker.cs │ │ │ ├── NSColorRenderingIntent.cs │ │ │ ├── NSColorSpace.cs │ │ │ ├── NSColorSpaceModel.cs │ │ │ ├── NSColorWell.cs │ │ │ ├── NSComboBox.cs │ │ │ ├── NSComboBoxCell.cs │ │ │ ├── NSComboBoxCellDataSource.cs │ │ │ ├── NSComboBoxDataSource.cs │ │ │ ├── NSComposite.cs │ │ │ ├── NSCompositingOperation.cs │ │ │ ├── NSControl.cs │ │ │ ├── NSControlCommand.cs │ │ │ ├── NSControlSize.cs │ │ │ ├── NSControlText.cs │ │ │ ├── NSControlTextCompletion.cs │ │ │ ├── NSControlTextError.cs │ │ │ ├── NSControlTextErrorEventArgs.cs │ │ │ ├── NSControlTextFilter.cs │ │ │ ├── NSControlTextValidation.cs │ │ │ ├── NSControlTint.cs │ │ │ ├── NSController.cs │ │ │ ├── NSCursor.cs │ │ │ ├── NSCustomImageRep.cs │ │ │ ├── NSDataEventArgs.cs │ │ │ ├── NSDatePicker.cs │ │ │ ├── NSDatePickerCell.cs │ │ │ ├── NSDatePickerCellDelegate.cs │ │ │ ├── NSDatePickerElementFlags.cs │ │ │ ├── NSDatePickerMode.cs │ │ │ ├── NSDatePickerStyle.cs │ │ │ ├── NSDatePickerValidatorEventArgs.cs │ │ │ ├── NSDictionaryEventArgs.cs │ │ │ ├── NSDockTile.cs │ │ │ ├── NSDockTilePlugIn.cs │ │ │ ├── NSDocument.cs │ │ │ ├── NSDocumentChangeType.cs │ │ │ ├── NSDocumentCompletionHandler.cs │ │ │ ├── NSDocumentController.cs │ │ │ ├── NSDragOperation.cs │ │ │ ├── NSDraggingContext.cs │ │ │ ├── NSDraggingDestination.cs │ │ │ ├── NSDraggingEnumerator.cs │ │ │ ├── NSDraggingFormation.cs │ │ │ ├── NSDraggingImageComponent.cs │ │ │ ├── NSDraggingInfo.cs │ │ │ ├── NSDraggingItem.cs │ │ │ ├── NSDraggingItemEnumerationOptions.cs │ │ │ ├── NSDraggingItemImagesContentProvider.cs │ │ │ ├── NSDraggingSession.cs │ │ │ ├── NSDraggingSource.cs │ │ │ ├── NSDrawer.cs │ │ │ ├── NSDrawerDelegate.cs │ │ │ ├── NSDrawerState.cs │ │ │ ├── NSEPSImageRep.cs │ │ │ ├── NSEdgeInsets.cs │ │ │ ├── NSErrorEventArgs.cs │ │ │ ├── NSEvent.cs │ │ │ ├── NSEventGestureAxis.cs │ │ │ ├── NSEventMask.cs │ │ │ ├── NSEventModifierMask.cs │ │ │ ├── NSEventMouseSubtype.cs │ │ │ ├── NSEventPhase.cs │ │ │ ├── NSEventSubtype.cs │ │ │ ├── NSEventSwipeTrackingOptions.cs │ │ │ ├── NSEventTrackHandler.cs │ │ │ ├── NSEventType.cs │ │ │ ├── NSFileTypeForHFSTypeCode.cs │ │ │ ├── NSFileWrapperReadingOptions.cs │ │ │ ├── NSFocusRingPlacement.cs │ │ │ ├── NSFocusRingType.cs │ │ │ ├── NSFont.cs │ │ │ ├── NSFontCollection.cs │ │ │ ├── NSFontCollectionAction.cs │ │ │ ├── NSFontCollectionChangedEventArgs.cs │ │ │ ├── NSFontCollectionOptions.cs │ │ │ ├── NSFontCollectionVisibility.cs │ │ │ ├── NSFontDescriptor.cs │ │ │ ├── NSFontManager.cs │ │ │ ├── NSFontPanel.cs │ │ │ ├── NSFontPanelMode.cs │ │ │ ├── NSFontRenderingMode.cs │ │ │ ├── NSFontSymbolicTraits.cs │ │ │ ├── NSFontTraitMask.cs │ │ │ ├── NSForm.cs │ │ │ ├── NSFormCell.cs │ │ │ ├── NSGLColorBuffer.cs │ │ │ ├── NSGLFormat.cs │ │ │ ├── NSGLTextureCubeMap.cs │ │ │ ├── NSGLTextureTarget.cs │ │ │ ├── NSGlyphGenerator.cs │ │ │ ├── NSGlyphInscription.cs │ │ │ ├── NSGlyphStorageOptions.cs │ │ │ ├── NSGradient.cs │ │ │ ├── NSGradientDrawingOptions.cs │ │ │ ├── NSGradientType.cs │ │ │ ├── NSGraphics.cs │ │ │ ├── NSGraphicsContext.cs │ │ │ ├── NSHelpManager.cs │ │ │ ├── NSImage.cs │ │ │ ├── NSImageAlignment.cs │ │ │ ├── NSImageCacheMode.cs │ │ │ ├── NSImageCell.cs │ │ │ ├── NSImageDelegate.cs │ │ │ ├── NSImageFrameStyle.cs │ │ │ ├── NSImageInterpolation.cs │ │ │ ├── NSImageLoadEventArgs.cs │ │ │ ├── NSImageLoadRepresentationEventArgs.cs │ │ │ ├── NSImageLoadStatus.cs │ │ │ ├── NSImageName.cs │ │ │ ├── NSImagePartialEventArgs.cs │ │ │ ├── NSImageRect.cs │ │ │ ├── NSImageRep.cs │ │ │ ├── NSImageRepLoadStatus.cs │ │ │ ├── NSImageScale.cs │ │ │ ├── NSImageScaling.cs │ │ │ ├── NSImageView.cs │ │ │ ├── NSKey.cs │ │ │ ├── NSLayoutAttribute.cs │ │ │ ├── NSLayoutConstraint.cs │ │ │ ├── NSLayoutConstraintOrientation.cs │ │ │ ├── NSLayoutFormatOptions.cs │ │ │ ├── NSLayoutManager.cs │ │ │ ├── NSLayoutManagerDelegate.cs │ │ │ ├── NSLayoutPriority.cs │ │ │ ├── NSLayoutRelation.cs │ │ │ ├── NSLevelIndicator.cs │ │ │ ├── NSLevelIndicatorCell.cs │ │ │ ├── NSLevelIndicatorStyle.cs │ │ │ ├── NSLineBreakMode.cs │ │ │ ├── NSLineCapStyle.cs │ │ │ ├── NSLineJoinStyle.cs │ │ │ ├── NSLineMovementDirection.cs │ │ │ ├── NSLineSweepDirection.cs │ │ │ ├── NSMatrix.cs │ │ │ ├── NSMatrixDelegate.cs │ │ │ ├── NSMatrixMode.cs │ │ │ ├── NSMenu.cs │ │ │ ├── NSMenuDelegate.cs │ │ │ ├── NSMenuItem.cs │ │ │ ├── NSMenuItemCell.cs │ │ │ ├── NSMenuProperty.cs │ │ │ ├── NSMenuView.cs │ │ │ ├── NSMutableFontCollection.cs │ │ │ ├── NSMutableParagraphStyle.cs │ │ │ ├── NSNib.cs │ │ │ ├── NSObjectController.cs │ │ │ ├── NSObjectPredicate.cs │ │ │ ├── NSOpenGLContext.cs │ │ │ ├── NSOpenGLContextParameter.cs │ │ │ ├── NSOpenGLGlobalOption.cs │ │ │ ├── NSOpenGLPixelBuffer.cs │ │ │ ├── NSOpenGLPixelFormat.cs │ │ │ ├── NSOpenGLPixelFormatAttribute.cs │ │ │ ├── NSOpenGLProfile.cs │ │ │ ├── NSOpenGLView.cs │ │ │ ├── NSOpenPanel.cs │ │ │ ├── NSOpenSaveCompare.cs │ │ │ ├── NSOpenSaveExpandingEventArgs.cs │ │ │ ├── NSOpenSaveFilename.cs │ │ │ ├── NSOpenSaveFilenameConfirmation.cs │ │ │ ├── NSOpenSaveFilenameEventArgs.cs │ │ │ ├── NSOpenSavePanelDelegate.cs │ │ │ ├── NSOpenSavePanelUrl.cs │ │ │ ├── NSOpenSavePanelUrlEventArgs.cs │ │ │ ├── NSOpenSavePanelValidate.cs │ │ │ ├── NSOutlineView.cs │ │ │ ├── NSOutlineViewDataSource.cs │ │ │ ├── NSOutlineViewDelegate.cs │ │ │ ├── NSPageLayout.cs │ │ │ ├── NSPanel.cs │ │ │ ├── NSPanelButtonType.cs │ │ │ ├── NSParagraphStyle.cs │ │ │ ├── NSPasteboard.cs │ │ │ ├── NSPasteboardItem.cs │ │ │ ├── NSPasteboardItemDataProvider.cs │ │ │ ├── NSPasteboardPredicate.cs │ │ │ ├── NSPasteboardReading.cs │ │ │ ├── NSPasteboardReadingOptions.cs │ │ │ ├── NSPasteboardWriting.cs │ │ │ ├── NSPasteboardWritingOptions.cs │ │ │ ├── NSPathCell.cs │ │ │ ├── NSPathCellDelegate.cs │ │ │ ├── NSPathCellDisplayPanelEventArgs.cs │ │ │ ├── NSPathCellMenuEventArgs.cs │ │ │ ├── NSPathComponentCell.cs │ │ │ ├── NSPathControl.cs │ │ │ ├── NSPathControlDelegate.cs │ │ │ ├── NSPathStyle.cs │ │ │ ├── NSPointingDeviceMask.cs │ │ │ ├── NSPointingDeviceType.cs │ │ │ ├── NSPopUpArrowPosition.cs │ │ │ ├── NSPopUpButton.cs │ │ │ ├── NSPopUpButtonCell.cs │ │ │ ├── NSPopover.cs │ │ │ ├── NSPopoverAppearance.cs │ │ │ ├── NSPopoverBehavior.cs │ │ │ ├── NSPopoverCloseEventArgs.cs │ │ │ ├── NSPopoverCloseReason.cs │ │ │ ├── NSPopoverDelegate.cs │ │ │ ├── NSPredicateEditor.cs │ │ │ ├── NSPredicateEditorRowTemplate.cs │ │ │ ├── NSPrintInfo.cs │ │ │ ├── NSPrintOperation.cs │ │ │ ├── NSPrintPanel.cs │ │ │ ├── NSPrintPanelAccessorizing.cs │ │ │ ├── NSPrintPanelOptions.cs │ │ │ ├── NSPrintPreviewGraphicsContext.cs │ │ │ ├── NSPrinter.cs │ │ │ ├── NSPrinterTableStatus.cs │ │ │ ├── NSPrintingOrientation.cs │ │ │ ├── NSPrintingPageOrder.cs │ │ │ ├── NSPrintingPaginationMode.cs │ │ │ ├── NSProgressIndicator.cs │ │ │ ├── NSProgressIndicatorStyle.cs │ │ │ ├── NSProgressIndicatorThickness.cs │ │ │ ├── NSRectEdge.cs │ │ │ ├── NSRemoteNotificationType.cs │ │ │ ├── NSRemoteOpenPanel.cs │ │ │ ├── NSRemoteSavePanel.cs │ │ │ ├── NSRequestUserAttentionType.cs │ │ │ ├── NSResponder.cs │ │ │ ├── NSRuleEditor.cs │ │ │ ├── NSRuleEditorDelegate.cs │ │ │ ├── NSRuleEditorNestingMode.cs │ │ │ ├── NSRuleEditorNumberOfChildren.cs │ │ │ ├── NSRuleEditorRowType.cs │ │ │ ├── NSRulerEditorChildCriterion.cs │ │ │ ├── NSRulerEditorDisplayValue.cs │ │ │ ├── NSRulerEditorPredicateParts.cs │ │ │ ├── NSRulerMarker.cs │ │ │ ├── NSRulerOrientation.cs │ │ │ ├── NSRulerView.cs │ │ │ ├── NSRunResponse.cs │ │ │ ├── NSRunningApplication.cs │ │ │ ├── NSSaveOperationType.cs │ │ │ ├── NSSavePanel.cs │ │ │ ├── NSSavePanelComplete.cs │ │ │ ├── NSScreen.cs │ │ │ ├── NSScrollArrowPosition.cs │ │ │ ├── NSScrollElasticity.cs │ │ │ ├── NSScrollView.cs │ │ │ ├── NSScrollViewFindBarPosition.cs │ │ │ ├── NSScroller.cs │ │ │ ├── NSScrollerArrow.cs │ │ │ ├── NSScrollerKnobStyle.cs │ │ │ ├── NSScrollerPart.cs │ │ │ ├── NSScrollerStyle.cs │ │ │ ├── NSSearchField.cs │ │ │ ├── NSSearchFieldCell.cs │ │ │ ├── NSSecureTextField.cs │ │ │ ├── NSSecureTextFieldCell.cs │ │ │ ├── NSSegmentStyle.cs │ │ │ ├── NSSegmentSwitchTracking.cs │ │ │ ├── NSSegmentedCell.cs │ │ │ ├── NSSegmentedControl.cs │ │ │ ├── NSSelectionAffinity.cs │ │ │ ├── NSSelectionDirection.cs │ │ │ ├── NSSelectionGranularity.cs │ │ │ ├── NSShadow.cs │ │ │ ├── NSSharingContentScope.cs │ │ │ ├── NSSharingService.cs │ │ │ ├── NSSharingServiceDelegate.cs │ │ │ ├── NSSharingServiceDidFailToShareItemsEventArgs.cs │ │ │ ├── NSSharingServiceHandler.cs │ │ │ ├── NSSharingServiceItemsEventArgs.cs │ │ │ ├── NSSharingServiceName.cs │ │ │ ├── NSSharingServicePicker.cs │ │ │ ├── NSSharingServicePickerDelegate.cs │ │ │ ├── NSSharingServicePickerDelegateForSharingService.cs │ │ │ ├── NSSharingServicePickerDidChooseSharingServiceEventArgs.cs │ │ │ ├── NSSharingServicePickerSharingServicesForItems.cs │ │ │ ├── NSSharingServiceSourceFrameOnScreenForShareItem.cs │ │ │ ├── NSSharingServiceSourceWindowForShareItems.cs │ │ │ ├── NSSharingServiceTransitionImageForShareItem.cs │ │ │ ├── NSSlider.cs │ │ │ ├── NSSliderCell.cs │ │ │ ├── NSSliderType.cs │ │ │ ├── NSSound.cs │ │ │ ├── NSSoundDelegate.cs │ │ │ ├── NSSoundFinishedEventArgs.cs │ │ │ ├── NSSpeechBoundary.cs │ │ │ ├── NSSpeechRecognizer.cs │ │ │ ├── NSSpeechRecognizerDelegate.cs │ │ │ ├── NSSpeechSynthesizer.cs │ │ │ ├── NSSpeechSynthesizerDelegate.cs │ │ │ ├── NSSpellChecker.cs │ │ │ ├── NSSplitView.cs │ │ │ ├── NSSplitViewDelegate.cs │ │ │ ├── NSSplitViewDividerStyle.cs │ │ │ ├── NSStatusBar.cs │ │ │ ├── NSStatusItem.cs │ │ │ ├── NSStepper.cs │ │ │ ├── NSSurfaceOrder.cs │ │ │ ├── NSSystemDefinedEvents.cs │ │ │ ├── NSTabState.cs │ │ │ ├── NSTabView.cs │ │ │ ├── NSTabViewDelegate.cs │ │ │ ├── NSTabViewItem.cs │ │ │ ├── NSTabViewItemEventArgs.cs │ │ │ ├── NSTabViewPredicate.cs │ │ │ ├── NSTabViewType.cs │ │ │ ├── NSTableCellView.cs │ │ │ ├── NSTableColumn.cs │ │ │ ├── NSTableColumnResizing.cs │ │ │ ├── NSTableHeaderCell.cs │ │ │ ├── NSTableHeaderView.cs │ │ │ ├── NSTableReorder.cs │ │ │ ├── NSTableRowView.cs │ │ │ ├── NSTableView.cs │ │ │ ├── NSTableViewAnimation.cs │ │ │ ├── NSTableViewCell.cs │ │ │ ├── NSTableViewCellEventArgs.cs │ │ │ ├── NSTableViewCellGetter.cs │ │ │ ├── NSTableViewColumnAutoresizingStyle.cs │ │ │ ├── NSTableViewColumnPredicate.cs │ │ │ ├── NSTableViewColumnRowPredicate.cs │ │ │ ├── NSTableViewColumnRowString.cs │ │ │ ├── NSTableViewColumnWidth.cs │ │ │ ├── NSTableViewDataSource.cs │ │ │ ├── NSTableViewDelegate.cs │ │ │ ├── NSTableViewDraggingDestinationFeedbackStyle.cs │ │ │ ├── NSTableViewDropOperation.cs │ │ │ ├── NSTableViewEventString.cs │ │ │ ├── NSTableViewGridStyle.cs │ │ │ ├── NSTableViewIndexFilter.cs │ │ │ ├── NSTableViewPredicate.cs │ │ │ ├── NSTableViewRowEventArgs.cs │ │ │ ├── NSTableViewRowGetter.cs │ │ │ ├── NSTableViewRowHandler.cs │ │ │ ├── NSTableViewRowHeight.cs │ │ │ ├── NSTableViewRowPredicate.cs │ │ │ ├── NSTableViewRowSizeStyle.cs │ │ │ ├── NSTableViewSearchString.cs │ │ │ ├── NSTableViewSelectionHighlightStyle.cs │ │ │ ├── NSTableViewSource.cs │ │ │ ├── NSTableViewTableEventArgs.cs │ │ │ ├── NSTableViewViewGetter.cs │ │ │ ├── NSText.cs │ │ │ ├── NSTextAlignment.cs │ │ │ ├── NSTextAttachment.cs │ │ │ ├── NSTextAttachmentCell.cs │ │ │ ├── NSTextBlock.cs │ │ │ ├── NSTextBlockDimension.cs │ │ │ ├── NSTextBlockLayer.cs │ │ │ ├── NSTextBlockValueType.cs │ │ │ ├── NSTextBlockVerticalAlignment.cs │ │ │ ├── NSTextContainer.cs │ │ │ ├── NSTextDelegate.cs │ │ │ ├── NSTextField.cs │ │ │ ├── NSTextFieldBezelStyle.cs │ │ │ ├── NSTextFieldCell.cs │ │ │ ├── NSTextFieldDelegate.cs │ │ │ ├── NSTextFinderAction.cs │ │ │ ├── NSTextInputContext.cs │ │ │ ├── NSTextList.cs │ │ │ ├── NSTextListOptions.cs │ │ │ ├── NSTextMovement.cs │ │ │ ├── NSTextPredicate.cs │ │ │ ├── NSTextStorage.cs │ │ │ ├── NSTextStorageDelegate.cs │ │ │ ├── NSTextStorageEditedFlags.cs │ │ │ ├── NSTextTab.cs │ │ │ ├── NSTextTabType.cs │ │ │ ├── NSTextTable.cs │ │ │ ├── NSTextTableBlock.cs │ │ │ ├── NSTextTableLayoutAlgorithm.cs │ │ │ ├── NSTextView.cs │ │ │ ├── NSTextViewCellPasteboard.cs │ │ │ ├── NSTextViewCellPosition.cs │ │ │ ├── NSTextViewChangeText.cs │ │ │ ├── NSTextViewClickedEventArgs.cs │ │ │ ├── NSTextViewCompletion.cs │ │ │ ├── NSTextViewDelegate.cs │ │ │ ├── NSTextViewDoubleClickEventArgs.cs │ │ │ ├── NSTextViewDraggedCellEventArgs.cs │ │ │ ├── NSTextViewEventMenu.cs │ │ │ ├── NSTextViewGetUndoManager.cs │ │ │ ├── NSTextViewLink.cs │ │ │ ├── NSTextViewOnTextCheck.cs │ │ │ ├── NSTextViewSelectionChange.cs │ │ │ ├── NSTextViewSelectionShouldChange.cs │ │ │ ├── NSTextViewSelectionWillChange.cs │ │ │ ├── NSTextViewSelectorCommand.cs │ │ │ ├── NSTextViewSpellingQuery.cs │ │ │ ├── NSTextViewTextChecked.cs │ │ │ ├── NSTextViewTooltip.cs │ │ │ ├── NSTextViewTypeAttribute.cs │ │ │ ├── NSTickMarkPosition.cs │ │ │ ├── NSTiffCompression.cs │ │ │ ├── NSTitlePosition.cs │ │ │ ├── NSTokenField.cs │ │ │ ├── NSTokenFieldDelegate.cs │ │ │ ├── NSTokenStyle.cs │ │ │ ├── NSToolbar.cs │ │ │ ├── NSToolbarDelegate.cs │ │ │ ├── NSToolbarDisplayMode.cs │ │ │ ├── NSToolbarIdentifiers.cs │ │ │ ├── NSToolbarItem.cs │ │ │ ├── NSToolbarSizeMode.cs │ │ │ ├── NSToolbarWillInsert.cs │ │ │ ├── NSTouch.cs │ │ │ ├── NSTouchPhase.cs │ │ │ ├── NSTrackingArea.cs │ │ │ ├── NSTrackingAreaOptions.cs │ │ │ ├── NSTreeController.cs │ │ │ ├── NSTreeNode.cs │ │ │ ├── NSType.cs │ │ │ ├── NSTypesetter.cs │ │ │ ├── NSTypesetterBehavior.cs │ │ │ ├── NSTypesetterControlCharacterAction.cs │ │ │ ├── NSUnderlinePattern.cs │ │ │ ├── NSUnderlineStyle.cs │ │ │ ├── NSUsableScrollerParts.cs │ │ │ ├── NSUserInterfaceLayoutDirection.cs │ │ │ ├── NSValidatedUserInterfaceItemWrapper.cs │ │ │ ├── NSView.cs │ │ │ ├── NSViewAnimation.cs │ │ │ ├── NSViewController.cs │ │ │ ├── NSViewLayerContentsPlacement.cs │ │ │ ├── NSViewLayerContentsRedrawPolicy.cs │ │ │ ├── NSViewResizingMask.cs │ │ │ ├── NSWindingRule.cs │ │ │ ├── NSWindow.cs │ │ │ ├── NSWindowAnimationBehavior.cs │ │ │ ├── NSWindowApplicationPresentationOptions.cs │ │ │ ├── NSWindowBackingLocation.cs │ │ │ ├── NSWindowButton.cs │ │ │ ├── NSWindowClient.cs │ │ │ ├── NSWindowCoderEventArgs.cs │ │ │ ├── NSWindowCollectionBehavior.cs │ │ │ ├── NSWindowCompletionHandler.cs │ │ │ ├── NSWindowController.cs │ │ │ ├── NSWindowDelegate.cs │ │ │ ├── NSWindowDepth.cs │ │ │ ├── NSWindowDocumentDrag.cs │ │ │ ├── NSWindowDurationEventArgs.cs │ │ │ ├── NSWindowFrame.cs │ │ │ ├── NSWindowFramePredicate.cs │ │ │ ├── NSWindowLevel.cs │ │ │ ├── NSWindowMenu.cs │ │ │ ├── NSWindowNumberListOptions.cs │ │ │ ├── NSWindowOrderingMode.cs │ │ │ ├── NSWindowResize.cs │ │ │ ├── NSWindowRestoration.cs │ │ │ ├── NSWindowSharingType.cs │ │ │ ├── NSWindowSheetRect.cs │ │ │ ├── NSWindowSize.cs │ │ │ ├── NSWindowSizeSize.cs │ │ │ ├── NSWindowStyle.cs │ │ │ ├── NSWindowUndoManager.cs │ │ │ ├── NSWindowWindows.cs │ │ │ ├── NSWorkspace.cs │ │ │ ├── NSWorkspaceApplicationEventArgs.cs │ │ │ ├── NSWorkspaceFileOperationEventArgs.cs │ │ │ ├── NSWorkspaceIconCreationOptions.cs │ │ │ ├── NSWorkspaceLaunchOptions.cs │ │ │ ├── NSWorkspaceMountEventArgs.cs │ │ │ ├── NSWorkspaceRenamedEventArgs.cs │ │ │ ├── NSWorkspaceUrlHandler.cs │ │ │ ├── NSWritingDirection.cs │ │ │ ├── OneShotTracker.cs │ │ │ └── OpenDocumentCompletionHandler.cs │ │ │ ├── AudioToolbox │ │ │ ├── AccessoryInfo.cs │ │ │ ├── AudioBalanceFade.cs │ │ │ ├── AudioBalanceFadeType.cs │ │ │ ├── AudioBuffer.cs │ │ │ ├── AudioBufferList.cs │ │ │ ├── AudioBuffers.cs │ │ │ ├── AudioBytePacketTranslation.cs │ │ │ ├── AudioChannelBit.cs │ │ │ ├── AudioChannelDescription.cs │ │ │ ├── AudioChannelFlags.cs │ │ │ ├── AudioChannelLabel.cs │ │ │ ├── AudioChannelLayout.cs │ │ │ ├── AudioChannelLayoutTag.cs │ │ │ ├── AudioChannelLayoutTagExtensions.cs │ │ │ ├── AudioClassDescription.cs │ │ │ ├── AudioCodecComponentType.cs │ │ │ ├── AudioConverter.cs │ │ │ ├── AudioConverterComplexInputData.cs │ │ │ ├── AudioConverterError.cs │ │ │ ├── AudioConverterPrimeInfo.cs │ │ │ ├── AudioConverterPrimeMethod.cs │ │ │ ├── AudioConverterPropertyID.cs │ │ │ ├── AudioConverterQuality.cs │ │ │ ├── AudioConverterSampleRateConverterComplexity.cs │ │ │ ├── AudioFile.cs │ │ │ ├── AudioFileChunkType.cs │ │ │ ├── AudioFileError.cs │ │ │ ├── AudioFileFlags.cs │ │ │ ├── AudioFileGlobalInfo.cs │ │ │ ├── AudioFileGlobalProperty.cs │ │ │ ├── AudioFileInfoDictionary.cs │ │ │ ├── AudioFileLoopDirection.cs │ │ │ ├── AudioFileMarker.cs │ │ │ ├── AudioFileMarkerList.cs │ │ │ ├── AudioFileMarkerType.cs │ │ │ ├── AudioFilePacketTableInfo.cs │ │ │ ├── AudioFilePermission.cs │ │ │ ├── AudioFileProperty.cs │ │ │ ├── AudioFileRegion.cs │ │ │ ├── AudioFileRegionFlags.cs │ │ │ ├── AudioFileRegionList.cs │ │ │ ├── AudioFileSmpteTime.cs │ │ │ ├── AudioFileStream.cs │ │ │ ├── AudioFileStreamProperty.cs │ │ │ ├── AudioFileStreamPropertyFlag.cs │ │ │ ├── AudioFileStreamStatus.cs │ │ │ ├── AudioFileType.cs │ │ │ ├── AudioFileTypeAndFormatID.cs │ │ │ ├── AudioFormat.cs │ │ │ ├── AudioFormatAvailability.cs │ │ │ ├── AudioFormatError.cs │ │ │ ├── AudioFormatFlags.cs │ │ │ ├── AudioFormatInfo.cs │ │ │ ├── AudioFormatProperty.cs │ │ │ ├── AudioFormatPropertyNative.cs │ │ │ ├── AudioFormatType.cs │ │ │ ├── AudioFramePacketTranslation.cs │ │ │ ├── AudioPanningInfo.cs │ │ │ ├── AudioQueue.cs │ │ │ ├── AudioQueueBuffer.cs │ │ │ ├── AudioQueueChannelAssignment.cs │ │ │ ├── AudioQueueDeviceProperty.cs │ │ │ ├── AudioQueueException.cs │ │ │ ├── AudioQueueHardwareCodecPolicy.cs │ │ │ ├── AudioQueueInputCallback.cs │ │ │ ├── AudioQueueLevelMeterState.cs │ │ │ ├── AudioQueueOutputCallback.cs │ │ │ ├── AudioQueueParameter.cs │ │ │ ├── AudioQueueParameterEvent.cs │ │ │ ├── AudioQueueProcessingTap.cs │ │ │ ├── AudioQueueProcessingTapCallback.cs │ │ │ ├── AudioQueueProcessingTapCallbackShared.cs │ │ │ ├── AudioQueueProcessingTapDelegate.cs │ │ │ ├── AudioQueueProcessingTapFlags.cs │ │ │ ├── AudioQueueProperty.cs │ │ │ ├── AudioQueuePropertyListener.cs │ │ │ ├── AudioQueueStatus.cs │ │ │ ├── AudioQueueTimeline.cs │ │ │ ├── AudioServices.cs │ │ │ ├── AudioServicesError.cs │ │ │ ├── AudioServicesPropertyKey.cs │ │ │ ├── AudioSession.cs │ │ │ ├── AudioSessionActiveFlags.cs │ │ │ ├── AudioSessionCategory.cs │ │ │ ├── AudioSessionErrors.cs │ │ │ ├── AudioSessionException.cs │ │ │ ├── AudioSessionInputRouteKind.cs │ │ │ ├── AudioSessionInterruptionState.cs │ │ │ ├── AudioSessionInterruptionType.cs │ │ │ ├── AudioSessionMode.cs │ │ │ ├── AudioSessionOutputRouteKind.cs │ │ │ ├── AudioSessionProperty.cs │ │ │ ├── AudioSessionPropertyEventArgs.cs │ │ │ ├── AudioSessionRouteChangeEventArgs.cs │ │ │ ├── AudioSessionRouteChangeReason.cs │ │ │ ├── AudioSessionRoutingOverride.cs │ │ │ ├── AudioSource.cs │ │ │ ├── AudioStreamBasicDescription.cs │ │ │ ├── AudioStreamPacketDescription.cs │ │ │ ├── AudioTimeStamp.cs │ │ │ ├── AudioValueRange.cs │ │ │ ├── BytePacketTranslationFlags.cs │ │ │ ├── GetSizeProc.cs │ │ │ ├── InputAudioQueue.cs │ │ │ ├── InputCompletedEventArgs.cs │ │ │ ├── InputSourceInfo.cs │ │ │ ├── MutableAudioBufferList.cs │ │ │ ├── OutputAudioQueue.cs │ │ │ ├── OutputCompletedEventArgs.cs │ │ │ ├── PacketReceivedEventArgs.cs │ │ │ ├── PanningMode.cs │ │ │ ├── PropertyFoundEventArgs.cs │ │ │ ├── ReadProc.cs │ │ │ ├── SetSizeProc.cs │ │ │ ├── SmpteTime.cs │ │ │ ├── SmpteTimeType.cs │ │ │ ├── SystemSound.cs │ │ │ ├── SystemSoundId.cs │ │ │ └── WriteProc.cs │ │ │ ├── AudioUnit │ │ │ ├── AUGraph.cs │ │ │ ├── AUGraphError.cs │ │ │ ├── AURenderCallbackStruct.cs │ │ │ ├── AudioCodecManufacturer.cs │ │ │ ├── AudioComponent.cs │ │ │ ├── AudioComponentDescription.cs │ │ │ ├── AudioComponentFlag.cs │ │ │ ├── AudioComponentManufacturerType.cs │ │ │ ├── AudioComponentType.cs │ │ │ ├── AudioGraphEventArgs.cs │ │ │ ├── AudioTypeConverter.cs │ │ │ ├── AudioTypeEffect.cs │ │ │ ├── AudioTypeGenerator.cs │ │ │ ├── AudioTypeMixer.cs │ │ │ ├── AudioTypeMusicDevice.cs │ │ │ ├── AudioTypeOutput.cs │ │ │ ├── AudioTypePanner.cs │ │ │ ├── AudioUnit.cs │ │ │ ├── AudioUnitEventArgs.cs │ │ │ ├── AudioUnitException.cs │ │ │ ├── AudioUnitParameterType.cs │ │ │ ├── AudioUnitPropertyIDType.cs │ │ │ ├── AudioUnitRenderActionFlags.cs │ │ │ ├── AudioUnitScopeType.cs │ │ │ ├── AudioUnitStatus.cs │ │ │ ├── AudioUnitUtils.cs │ │ │ ├── ExtAudioFile.cs │ │ │ ├── ExtAudioFileError.cs │ │ │ ├── RenderCallbackShared.cs │ │ │ └── RenderDelegate.cs │ │ │ ├── AudioUnitWrapper │ │ │ ├── _AudioConverter.cs │ │ │ └── _AudioConverterEventArgs.cs │ │ │ ├── Builder │ │ │ ├── ActionMarshaler.cs │ │ │ ├── InterfaceMarshaler.cs │ │ │ ├── NSObjectMarshaler.cs │ │ │ ├── NativeConstructorBuilder.cs │ │ │ ├── NativeImplementationBuilder.cs │ │ │ ├── NativeMethodBuilder.cs │ │ │ ├── SelectorMarshaler.cs │ │ │ └── TypeConverter.cs │ │ │ ├── Constants.cs │ │ │ ├── CoreAnimation │ │ │ ├── CAAction.cs │ │ │ ├── CAAnimation.cs │ │ │ ├── CAAnimationDelegate.cs │ │ │ ├── CAAnimationGroup.cs │ │ │ ├── CAAnimationStateEventArgs.cs │ │ │ ├── CAAutoresizingMask.cs │ │ │ ├── CABarBeatTime.cs │ │ │ ├── CABasicAnimation.cs │ │ │ ├── CAConstraint.cs │ │ │ ├── CAConstraintAttribute.cs │ │ │ ├── CAConstraintLayoutManager.cs │ │ │ ├── CAEdgeAntialiasingMask.cs │ │ │ ├── CAEmitterCell.cs │ │ │ ├── CAEmitterLayer.cs │ │ │ ├── CAFillMode.cs │ │ │ ├── CAGradientLayer.cs │ │ │ ├── CAKeyFrameAnimation.cs │ │ │ ├── CALayer.cs │ │ │ ├── CALayerDelegate.cs │ │ │ ├── CAMediaTimingFunction.cs │ │ │ ├── CAOpenGLLayer.cs │ │ │ ├── CAPropertyAnimation.cs │ │ │ ├── CAReplicatorLayer.cs │ │ │ ├── CAScrollLayer.cs │ │ │ ├── CAShapeLayer.cs │ │ │ ├── CATextLayer.cs │ │ │ ├── CATiledLayer.cs │ │ │ ├── CATransaction.cs │ │ │ ├── CATransform3D.cs │ │ │ ├── CATransformLayer.cs │ │ │ ├── CATransition.cs │ │ │ └── CAValueFunction.cs │ │ │ ├── CoreData │ │ │ ├── NSAtomicStore.cs │ │ │ ├── NSAtomicStoreCacheNode.cs │ │ │ ├── NSAttributeDescription.cs │ │ │ ├── NSAttributeType.cs │ │ │ ├── NSDeleteRule.cs │ │ │ ├── NSEntityDescription.cs │ │ │ ├── NSEntityMapping.cs │ │ │ ├── NSEntityMappingType.cs │ │ │ ├── NSEntityMigrationPolicy.cs │ │ │ ├── NSFetchRequest.cs │ │ │ ├── NSFetchRequestResultType.cs │ │ │ ├── NSFetchedPropertyDescription.cs │ │ │ ├── NSIncrementalStore.cs │ │ │ ├── NSIncrementalStoreNode.cs │ │ │ ├── NSKeyValueSetMutationKind.cs │ │ │ ├── NSManagedObject.cs │ │ │ ├── NSManagedObjectContext.cs │ │ │ ├── NSManagedObjectContextConcurrencyType.cs │ │ │ ├── NSManagedObjectID.cs │ │ │ ├── NSManagedObjectModel.cs │ │ │ ├── NSMappingModel.cs │ │ │ ├── NSMergeConflict.cs │ │ │ ├── NSMergePolicy.cs │ │ │ ├── NSMergePolicyType.cs │ │ │ ├── NSMigrationManager.cs │ │ │ ├── NSPersistentStore.cs │ │ │ ├── NSPersistentStoreCoordinator.cs │ │ │ ├── NSPersistentStoreRequest.cs │ │ │ ├── NSPersistentStoreRequestType.cs │ │ │ ├── NSPropertyDescription.cs │ │ │ ├── NSPropertyMapping.cs │ │ │ ├── NSRelationshipDescription.cs │ │ │ └── NSSaveChangesRequest.cs │ │ │ ├── CoreFoundation │ │ │ ├── CFAllocator.cs │ │ │ ├── CFAllocatorFlags.cs │ │ │ ├── CFArray.cs │ │ │ ├── CFBoolean.cs │ │ │ ├── CFData.cs │ │ │ ├── CFDataBuffer.cs │ │ │ ├── CFDictionary.cs │ │ │ ├── CFErrorDomain.cs │ │ │ ├── CFException.cs │ │ │ ├── CFExceptionDataKey.cs │ │ │ ├── CFIndex.cs │ │ │ ├── CFMutableDictionary.cs │ │ │ ├── CFObject.cs │ │ │ ├── CFRange.cs │ │ │ ├── CFReadStream.cs │ │ │ ├── CFRunLoop.cs │ │ │ ├── CFRunLoopExitReason.cs │ │ │ ├── CFRunLoopSource.cs │ │ │ ├── CFRunLoopSourceContext.cs │ │ │ ├── CFRunLoopSourceCustom.cs │ │ │ ├── CFSocketCallBackType.cs │ │ │ ├── CFSocketError.cs │ │ │ ├── CFSocketException.cs │ │ │ ├── CFSocketFlags.cs │ │ │ ├── CFSocketNativeHandle.cs │ │ │ ├── CFStream.cs │ │ │ ├── CFStreamClientContext.cs │ │ │ ├── CFStreamEventType.cs │ │ │ ├── CFStreamStatus.cs │ │ │ ├── CFString.cs │ │ │ ├── CFType.cs │ │ │ ├── CFUrl.cs │ │ │ ├── CFUrlPathStyle.cs │ │ │ ├── CFWriteStream.cs │ │ │ ├── DispatchGroup.cs │ │ │ ├── DispatchObject.cs │ │ │ ├── DispatchQueue.cs │ │ │ ├── DispatchQueuePriority.cs │ │ │ ├── DispatchQueueSynchronizationContext.cs │ │ │ ├── DispatchTime.cs │ │ │ ├── ICFType.cs │ │ │ ├── NativeObject.cs │ │ │ └── Tuple.cs │ │ │ ├── CoreGraphics │ │ │ ├── CGAffineTransform.cs │ │ │ ├── CGBitmapContext.cs │ │ │ ├── CGBitmapFlags.cs │ │ │ ├── CGBlendMode.cs │ │ │ ├── CGColor.cs │ │ │ ├── CGColorRenderingIntent.cs │ │ │ ├── CGColorSpace.cs │ │ │ ├── CGColorSpaceModel.cs │ │ │ ├── CGContext.cs │ │ │ ├── CGContextPDF.cs │ │ │ ├── CGDataConsumer.cs │ │ │ ├── CGDataProvider.cs │ │ │ ├── CGFont.cs │ │ │ ├── CGFunction.cs │ │ │ ├── CGGradient.cs │ │ │ ├── CGGradientDrawingOptions.cs │ │ │ ├── CGImage.cs │ │ │ ├── CGImageAlphaInfo.cs │ │ │ ├── CGImageColorModel.cs │ │ │ ├── CGImageProperties.cs │ │ │ ├── CGImagePropertiesExif.cs │ │ │ ├── CGImagePropertiesGps.cs │ │ │ ├── CGImagePropertiesIptc.cs │ │ │ ├── CGImagePropertiesJfif.cs │ │ │ ├── CGImagePropertiesPng.cs │ │ │ ├── CGImagePropertiesTiff.cs │ │ │ ├── CGInterpolationQuality.cs │ │ │ ├── CGLayer.cs │ │ │ ├── CGLineCap.cs │ │ │ ├── CGLineJoin.cs │ │ │ ├── CGPDFArray.cs │ │ │ ├── CGPDFBox.cs │ │ │ ├── CGPDFDictionary.cs │ │ │ ├── CGPDFDocument.cs │ │ │ ├── CGPDFInfo.cs │ │ │ ├── CGPDFPage.cs │ │ │ ├── CGPDFPageInfo.cs │ │ │ ├── CGPDFStream.cs │ │ │ ├── CGPDFString.cs │ │ │ ├── CGPath.cs │ │ │ ├── CGPathDrawingMode.cs │ │ │ ├── CGPathElement.cs │ │ │ ├── CGPathElementType.cs │ │ │ ├── CGPattern.cs │ │ │ ├── CGPatternCallbacks.cs │ │ │ ├── CGPatternTiling.cs │ │ │ ├── CGPoint.cs │ │ │ ├── CGRect.cs │ │ │ ├── CGShading.cs │ │ │ ├── CGSize.cs │ │ │ ├── CGTextDrawingMode.cs │ │ │ ├── CGTextEncoding.cs │ │ │ ├── CGWindowImageOption.cs │ │ │ ├── CGWindowListOption.cs │ │ │ ├── DrawPatternCallback.cs │ │ │ ├── NSRectEdge.cs │ │ │ ├── RectangleFExtensions.cs │ │ │ └── ReleaseInfoCallback.cs │ │ │ ├── CoreImage │ │ │ ├── CIAdditionCompositing.cs │ │ │ ├── CIAffineClamp.cs │ │ │ ├── CIAffineFilter.cs │ │ │ ├── CIAffineTile.cs │ │ │ ├── CIAffineTransform.cs │ │ │ ├── CIAutoAdjustmentFilterOptions.cs │ │ │ ├── CIBarsSwipeTransition.cs │ │ │ ├── CIBlendFilter.cs │ │ │ ├── CIBlendWithMask.cs │ │ │ ├── CIBloom.cs │ │ │ ├── CICheckerboardGenerator.cs │ │ │ ├── CICircleSplashDistortion.cs │ │ │ ├── CICircularScreen.cs │ │ │ ├── CIColor.cs │ │ │ ├── CIColorBlendMode.cs │ │ │ ├── CIColorBurnBlendMode.cs │ │ │ ├── CIColorControls.cs │ │ │ ├── CIColorCube.cs │ │ │ ├── CIColorDodgeBlendMode.cs │ │ │ ├── CIColorInvert.cs │ │ │ ├── CIColorMap.cs │ │ │ ├── CIColorMatrix.cs │ │ │ ├── CIColorMonochrome.cs │ │ │ ├── CIColorPosterize.cs │ │ │ ├── CICompositingFilter.cs │ │ │ ├── CIConstantColorGenerator.cs │ │ │ ├── CIContext.cs │ │ │ ├── CIContextOptions.cs │ │ │ ├── CICopyMachineTransition.cs │ │ │ ├── CICrop.cs │ │ │ ├── CIDarkenBlendMode.cs │ │ │ ├── CIDepthOfField.cs │ │ │ ├── CIDetector.cs │ │ │ ├── CIDifferenceBlendMode.cs │ │ │ ├── CIDisintegrateWithMaskTransition.cs │ │ │ ├── CIDissolveTransition.cs │ │ │ ├── CIDistortionFilter.cs │ │ │ ├── CIDotScreen.cs │ │ │ ├── CIEightfoldReflectedTile.cs │ │ │ ├── CIExclusionBlendMode.cs │ │ │ ├── CIExposureAdjust.cs │ │ │ ├── CIFaceBalance.cs │ │ │ ├── CIFaceFeature.cs │ │ │ ├── CIFalseColor.cs │ │ │ ├── CIFeature.cs │ │ │ ├── CIFilter.cs │ │ │ ├── CIFilterApply.cs │ │ │ ├── CIFilterAttributes.cs │ │ │ ├── CIFilterCategory.cs │ │ │ ├── CIFilterGenerator.cs │ │ │ ├── CIFilterInputKey.cs │ │ │ ├── CIFilterMode.cs │ │ │ ├── CIFilterOutputKey.cs │ │ │ ├── CIFilterShape.cs │ │ │ ├── CIFlashTransition.cs │ │ │ ├── CIFormat.cs │ │ │ ├── CIFourfoldReflectedTile.cs │ │ │ ├── CIFourfoldRotatedTile.cs │ │ │ ├── CIFourfoldTranslatedTile.cs │ │ │ ├── CIGammaAdjust.cs │ │ │ ├── CIGaussianBlur.cs │ │ │ ├── CIGaussianGradient.cs │ │ │ ├── CIGlideReflectedTile.cs │ │ │ ├── CIGloom.cs │ │ │ ├── CIHardLightBlendMode.cs │ │ │ ├── CIHatchedScreen.cs │ │ │ ├── CIHighlightShadowAdjust.cs │ │ │ ├── CIHoleDistortion.cs │ │ │ ├── CIHueAdjust.cs │ │ │ ├── CIHueBlendMode.cs │ │ │ ├── CIImage.cs │ │ │ ├── CIImageAccumulator.cs │ │ │ ├── CIImageInitializationOptions.cs │ │ │ ├── CIImageInitializationOptionsWithMetadata.cs │ │ │ ├── CIImageOrientation.cs │ │ │ ├── CIKernel.cs │ │ │ ├── CILanczosScaleTransform.cs │ │ │ ├── CILightenBlendMode.cs │ │ │ ├── CILineScreen.cs │ │ │ ├── CILinearGradient.cs │ │ │ ├── CILuminosityBlendMode.cs │ │ │ ├── CIMaskToAlpha.cs │ │ │ ├── CIMaximumComponent.cs │ │ │ ├── CIMaximumCompositing.cs │ │ │ ├── CIMinimumComponent.cs │ │ │ ├── CIMinimumCompositing.cs │ │ │ ├── CIModTransition.cs │ │ │ ├── CIMultiplyBlendMode.cs │ │ │ ├── CIMultiplyCompositing.cs │ │ │ ├── CIOverlayBlendMode.cs │ │ │ ├── CIPageCurlTransition.cs │ │ │ ├── CIPerspectiveTile.cs │ │ │ ├── CIPerspectiveTransform.cs │ │ │ ├── CIPinchDistortion.cs │ │ │ ├── CIPixellate.cs │ │ │ ├── CIPlugIn.cs │ │ │ ├── CIRadialGradient.cs │ │ │ ├── CIRandomGenerator.cs │ │ │ ├── CIRippleTransition.cs │ │ │ ├── CISampler.cs │ │ │ ├── CISamplerOptions.cs │ │ │ ├── CISaturationBlendMode.cs │ │ │ ├── CIScreenBlendMode.cs │ │ │ ├── CIScreenFilter.cs │ │ │ ├── CISepiaTone.cs │ │ │ ├── CISharpenLuminance.cs │ │ │ ├── CISixfoldReflectedTile.cs │ │ │ ├── CISixfoldRotatedTile.cs │ │ │ ├── CISoftLightBlendMode.cs │ │ │ ├── CISourceAtopCompositing.cs │ │ │ ├── CISourceInCompositing.cs │ │ │ ├── CISourceOutCompositing.cs │ │ │ ├── CISourceOverCompositing.cs │ │ │ ├── CIStarShineGenerator.cs │ │ │ ├── CIStraightenFilter.cs │ │ │ ├── CIStripesGenerator.cs │ │ │ ├── CISwipeTransition.cs │ │ │ ├── CITemperatureAndTint.cs │ │ │ ├── CITileFilter.cs │ │ │ ├── CIToneCurve.cs │ │ │ ├── CITransitionFilter.cs │ │ │ ├── CITwelvefoldReflectedTile.cs │ │ │ ├── CITwirlDistortion.cs │ │ │ ├── CIUIParameterSet.cs │ │ │ ├── CIUnsharpMask.cs │ │ │ ├── CIVector.cs │ │ │ ├── CIVibrance.cs │ │ │ ├── CIVortexDistortion.cs │ │ │ ├── CIWhitePointAdjust.cs │ │ │ ├── CIWrapMode.cs │ │ │ └── FaceDetectorAccuracy.cs │ │ │ ├── CoreLocation │ │ │ ├── CLActivityType.cs │ │ │ ├── CLAuthorizationChangedEventArgs.cs │ │ │ ├── CLAuthorizationStatus.cs │ │ │ ├── CLAuthroziationChangedEventArgs.cs │ │ │ ├── CLDeviceOrientation.cs │ │ │ ├── CLError.cs │ │ │ ├── CLLocation.cs │ │ │ ├── CLLocationCoordinate2D.cs │ │ │ ├── CLLocationManager.cs │ │ │ ├── CLLocationManagerDelegate.cs │ │ │ ├── CLLocationManagerEventArgs.cs │ │ │ ├── CLLocationUpdatedEventArgs.cs │ │ │ └── CLLocationsUpdatedEventArgs.cs │ │ │ ├── CoreMedia │ │ │ ├── CMAudioFormatDescription.cs │ │ │ ├── CMBlockBuffer.cs │ │ │ ├── CMBlockBufferError.cs │ │ │ ├── CMBlockBufferFlags.cs │ │ │ ├── CMClock.cs │ │ │ ├── CMClockError.cs │ │ │ ├── CMClockOrTimebase.cs │ │ │ ├── CMClosedCaptionFormatType.cs │ │ │ ├── CMFormatDescription.cs │ │ │ ├── CMFormatDescriptionError.cs │ │ │ ├── CMMediaType.cs │ │ │ ├── CMMemoryPool.cs │ │ │ ├── CMMetadataFormatType.cs │ │ │ ├── CMMuxedStreamType.cs │ │ │ ├── CMSampleBuffer.cs │ │ │ ├── CMSampleBufferAttachmentSettings.cs │ │ │ ├── CMSampleBufferError.cs │ │ │ ├── CMSampleTimingInfo.cs │ │ │ ├── CMSubtitleFormatType.cs │ │ │ ├── CMSyncError.cs │ │ │ ├── CMTextMarkupAttributes.cs │ │ │ ├── CMTime.cs │ │ │ ├── CMTimeCodeFormatType.cs │ │ │ ├── CMTimeMapping.cs │ │ │ ├── CMTimeRange.cs │ │ │ ├── CMTimeRoundingMethod.cs │ │ │ ├── CMTimeScale.cs │ │ │ ├── CMTimebase.cs │ │ │ ├── CMTimebaseError.cs │ │ │ ├── CMVideoCodecType.cs │ │ │ ├── CMVideoDimensions.cs │ │ │ ├── CMVideoFormatDescription.cs │ │ │ └── TextMarkupColor.cs │ │ │ ├── CoreMidi │ │ │ ├── IOErrorEventArgs.cs │ │ │ ├── Midi.cs │ │ │ ├── MidiClient.cs │ │ │ ├── MidiDevice.cs │ │ │ ├── MidiEndpoint.cs │ │ │ ├── MidiEntity.cs │ │ │ ├── MidiError.cs │ │ │ ├── MidiException.cs │ │ │ ├── MidiNetworkConnectionPolicy.cs │ │ │ ├── MidiNotificationMessageId.cs │ │ │ ├── MidiNotifyProc.cs │ │ │ ├── MidiObject.cs │ │ │ ├── MidiObjectType.cs │ │ │ ├── MidiPacket.cs │ │ │ ├── MidiPacketsEventArgs.cs │ │ │ ├── MidiPort.cs │ │ │ ├── MidiReadProc.cs │ │ │ ├── ObjectAddedOrRemovedEventArgs.cs │ │ │ └── ObjectPropertyChangedEventArgs.cs │ │ │ ├── CoreServices │ │ │ ├── CFHTTPAuthentication.cs │ │ │ ├── CFHTTPMessage.cs │ │ │ ├── CFHTTPStream.cs │ │ │ └── CFHost.cs │ │ │ ├── CoreText │ │ │ ├── Adapter.cs │ │ │ ├── CTBaselineClass.cs │ │ │ ├── CTBaselineClassID.cs │ │ │ ├── CTBaselineFondID.cs │ │ │ ├── CTBaselineFont.cs │ │ │ ├── CTCharacterCollection.cs │ │ │ ├── CTFont.cs │ │ │ ├── CTFontCollection.cs │ │ │ ├── CTFontCollectionOptionKey.cs │ │ │ ├── CTFontCollectionOptions.cs │ │ │ ├── CTFontDescriptor.cs │ │ │ ├── CTFontDescriptorAttributeKey.cs │ │ │ ├── CTFontDescriptorAttributes.cs │ │ │ ├── CTFontDescriptorMatchingState.cs │ │ │ ├── CTFontFeatureAllTypographicFeatures.cs │ │ │ ├── CTFontFeatureAlternateKana.cs │ │ │ ├── CTFontFeatureAnnotation.cs │ │ │ ├── CTFontFeatureCJKRomanSpacing.cs │ │ │ ├── CTFontFeatureCJKSymbolAlternatives.cs │ │ │ ├── CTFontFeatureCJKVerticalRomanPlacement.cs │ │ │ ├── CTFontFeatureCaseSensitiveLayout.cs │ │ │ ├── CTFontFeatureCharacterAlternatives.cs │ │ │ ├── CTFontFeatureCharacterShape.cs │ │ │ ├── CTFontFeatureContextualAlternates.cs │ │ │ ├── CTFontFeatureCursiveConnection.cs │ │ │ ├── CTFontFeatureDesignComplexity.cs │ │ │ ├── CTFontFeatureDiacritics.cs │ │ │ ├── CTFontFeatureFractions.cs │ │ │ ├── CTFontFeatureIdeographicAlternatives.cs │ │ │ ├── CTFontFeatureIdeographicSpacing.cs │ │ │ ├── CTFontFeatureItalicCJKRoman.cs │ │ │ ├── CTFontFeatureKanaSpacing.cs │ │ │ ├── CTFontFeatureKey.cs │ │ │ ├── CTFontFeatureLetterCase.cs │ │ │ ├── CTFontFeatureLigatures.cs │ │ │ ├── CTFontFeatureLinguisticRearrangementConnection.cs │ │ │ ├── CTFontFeatureLowerCase.cs │ │ │ ├── CTFontFeatureMathematicalExtras.cs │ │ │ ├── CTFontFeatureNumberCase.cs │ │ │ ├── CTFontFeatureNumberSpacing.cs │ │ │ ├── CTFontFeatureOrnamentSets.cs │ │ │ ├── CTFontFeatureOverlappingCharacters.cs │ │ │ ├── CTFontFeatureRubyKana.cs │ │ │ ├── CTFontFeatureSelectorKey.cs │ │ │ ├── CTFontFeatureSelectors.cs │ │ │ ├── CTFontFeatureSettings.cs │ │ │ ├── CTFontFeatureSmartSwash.cs │ │ │ ├── CTFontFeatureStyleOptions.cs │ │ │ ├── CTFontFeatureStylisticAlternatives.cs │ │ │ ├── CTFontFeatureTextSpacing.cs │ │ │ ├── CTFontFeatureTransliteration.cs │ │ │ ├── CTFontFeatureTypographicExtras.cs │ │ │ ├── CTFontFeatureUnicodeDecomposition.cs │ │ │ ├── CTFontFeatureUpperCase.cs │ │ │ ├── CTFontFeatureVerticalPosition.cs │ │ │ ├── CTFontFeatureVerticalSubstitutionConnection.cs │ │ │ ├── CTFontFeatures.cs │ │ │ ├── CTFontFormat.cs │ │ │ ├── CTFontManager.cs │ │ │ ├── CTFontManagerAutoActivation.cs │ │ │ ├── CTFontManagerError.cs │ │ │ ├── CTFontManagerScope.cs │ │ │ ├── CTFontNameKey.cs │ │ │ ├── CTFontNameKeyId.cs │ │ │ ├── CTFontOptions.cs │ │ │ ├── CTFontOrientation.cs │ │ │ ├── CTFontPriority.cs │ │ │ ├── CTFontStylisticClass.cs │ │ │ ├── CTFontSymbolicTraits.cs │ │ │ ├── CTFontTable.cs │ │ │ ├── CTFontTableOptions.cs │ │ │ ├── CTFontTraitKey.cs │ │ │ ├── CTFontTraits.cs │ │ │ ├── CTFontUIFontType.cs │ │ │ ├── CTFontVariation.cs │ │ │ ├── CTFontVariationAxes.cs │ │ │ ├── CTFontVariationAxisKey.cs │ │ │ ├── CTFrame.cs │ │ │ ├── CTFrameAttributeKey.cs │ │ │ ├── CTFrameAttributes.cs │ │ │ ├── CTFramePathFillRule.cs │ │ │ ├── CTFrameProgression.cs │ │ │ ├── CTFramesetter.cs │ │ │ ├── CTGlyphInfo.cs │ │ │ ├── CTLigatureFormation.cs │ │ │ ├── CTLine.cs │ │ │ ├── CTLineBoundsOptions.cs │ │ │ ├── CTLineBreakMode.cs │ │ │ ├── CTLineTruncation.cs │ │ │ ├── CTParagraphStyle.cs │ │ │ ├── CTParagraphStyleSetting.cs │ │ │ ├── CTParagraphStyleSettingValue.cs │ │ │ ├── CTParagraphStyleSettings.cs │ │ │ ├── CTParagraphStyleSpecifier.cs │ │ │ ├── CTParagraphStyleSpecifierByteValue.cs │ │ │ ├── CTParagraphStyleSpecifierIntPtrsValue.cs │ │ │ ├── CTParagraphStyleSpecifierSingleValue.cs │ │ │ ├── CTParagraphStyleSpecifierValue.cs │ │ │ ├── CTRun.cs │ │ │ ├── CTRunDelegate.cs │ │ │ ├── CTRunDelegateCallbacks.cs │ │ │ ├── CTRunDelegateDeallocateCallback.cs │ │ │ ├── CTRunDelegateGetAscentCallback.cs │ │ │ ├── CTRunDelegateGetDescentCallback.cs │ │ │ ├── CTRunDelegateGetWidthCallback.cs │ │ │ ├── CTRunDelegateOperations.cs │ │ │ ├── CTRunDelegateVersion.cs │ │ │ ├── CTRunStatus.cs │ │ │ ├── CTStringAttributeKey.cs │ │ │ ├── CTStringAttributes.cs │ │ │ ├── CTSuperscriptStyle.cs │ │ │ ├── CTTextAlignment.cs │ │ │ ├── CTTextTab.cs │ │ │ ├── CTTextTabOptionKey.cs │ │ │ ├── CTTextTabOptions.cs │ │ │ ├── CTTypesetter.cs │ │ │ ├── CTTypesetterOptionKey.cs │ │ │ ├── CTTypesetterOptions.cs │ │ │ ├── CTUnderlineStyle.cs │ │ │ ├── CTUnderlineStyleModifiers.cs │ │ │ ├── CTWritingDirection.cs │ │ │ ├── ConstructorError.cs │ │ │ └── FontFeatureGroup.cs │ │ │ ├── CoreVideo │ │ │ ├── CVAttachmentMode.cs │ │ │ ├── CVBuffer.cs │ │ │ ├── CVDisplayLink.cs │ │ │ ├── CVFillExtendedPixelsCallBack.cs │ │ │ ├── CVFillExtendedPixelsCallBackData.cs │ │ │ ├── CVImageBuffer.cs │ │ │ ├── CVOptionFlags.cs │ │ │ ├── CVPixelBuffer.cs │ │ │ ├── CVPixelBufferAttributes.cs │ │ │ ├── CVPixelBufferLock.cs │ │ │ ├── CVPixelBufferPool.cs │ │ │ ├── CVPixelBufferPoolAllocationSettings.cs │ │ │ ├── CVPixelBufferPoolSettings.cs │ │ │ ├── CVPixelFormatDescription.cs │ │ │ ├── CVPixelFormatType.cs │ │ │ ├── CVPlanarComponentInfo.cs │ │ │ ├── CVPlanarPixelBufferInfo.cs │ │ │ ├── CVPlanarPixelBufferInfo_YCbCrPlanar.cs │ │ │ ├── CVReturn.cs │ │ │ ├── CVSMPTETime.cs │ │ │ ├── CVSMPTETimeFlags.cs │ │ │ ├── CVSMPTETimeType.cs │ │ │ ├── CVTime.cs │ │ │ ├── CVTimeFlags.cs │ │ │ ├── CVTimeStamp.cs │ │ │ └── CVTimeStampFlags.cs │ │ │ ├── CoreWlan │ │ │ ├── CW8021XProfile.cs │ │ │ ├── CWConfiguration.cs │ │ │ ├── CWInterface.cs │ │ │ ├── CWNetwork.cs │ │ │ └── CWWirelessProfile.cs │ │ │ ├── Darwin │ │ │ ├── EventFilter.cs │ │ │ ├── EventFlags.cs │ │ │ ├── FilterFlags.cs │ │ │ ├── KernelEvent.cs │ │ │ ├── KernelQueue.cs │ │ │ ├── Message.cs │ │ │ ├── SystemLog.cs │ │ │ └── TimeSpec.cs │ │ │ ├── Foundation │ │ │ ├── AEEventClass.cs │ │ │ ├── AEEventID.cs │ │ │ ├── ActionAttribute.cs │ │ │ ├── AdviceAttribute.cs │ │ │ ├── ConnectAttribute.cs │ │ │ ├── DictionaryContainer.cs │ │ │ ├── ExportAttribute.cs │ │ │ ├── FieldAttribute.cs │ │ │ ├── InternalNSNotificationHandler.cs │ │ │ ├── LinkerSafeAttribute.cs │ │ │ ├── ModelAttribute.cs │ │ │ ├── ModelNotImplementedException.cs │ │ │ ├── NSAction.cs │ │ │ ├── NSActionDispatcher.cs │ │ │ ├── NSAffineTransform.cs │ │ │ ├── NSAlignmentOptions.cs │ │ │ ├── NSAppleEventDescriptor.cs │ │ │ ├── NSAppleEventManager.cs │ │ │ ├── NSArchiveReplaceEventArgs.cs │ │ │ ├── NSArray.cs │ │ │ ├── NSAsyncActionDispatcher.cs │ │ │ ├── NSAttributedRangeCallback.cs │ │ │ ├── NSAttributedString.cs │ │ │ ├── NSAttributedStringCallback.cs │ │ │ ├── NSAttributedStringEnumeration.cs │ │ │ ├── NSAutoreleasePool.cs │ │ │ ├── NSBlockOperation.cs │ │ │ ├── NSBundle.cs │ │ │ ├── NSBundleExecutableArchitecture.cs │ │ │ ├── NSByteCountFormatter.cs │ │ │ ├── NSByteCountFormatterCountStyle.cs │ │ │ ├── NSByteCountFormatterUnits.cs │ │ │ ├── NSCache.cs │ │ │ ├── NSCacheDelegate.cs │ │ │ ├── NSCachedUrlResponse.cs │ │ │ ├── NSCalculationError.cs │ │ │ ├── NSCalendar.cs │ │ │ ├── NSCalendarType.cs │ │ │ ├── NSCalendarUnit.cs │ │ │ ├── NSCharacterSet.cs │ │ │ ├── NSCoder.cs │ │ │ ├── NSComparator.cs │ │ │ ├── NSComparisonPredicate.cs │ │ │ ├── NSComparisonPredicateModifier.cs │ │ │ ├── NSComparisonPredicateOptions.cs │ │ │ ├── NSComparisonResult.cs │ │ │ ├── NSCompoundPredicate.cs │ │ │ ├── NSCompoundPredicateType.cs │ │ │ ├── NSConnection.cs │ │ │ ├── NSConnectionDelegate.cs │ │ │ ├── NSData.cs │ │ │ ├── NSDataReadingOptions.cs │ │ │ ├── NSDataSearchOptions.cs │ │ │ ├── NSDataWritingOptions.cs │ │ │ ├── NSDate.cs │ │ │ ├── NSDateComponents.cs │ │ │ ├── NSDateComponentsWrappingBehavior.cs │ │ │ ├── NSDateFormatter.cs │ │ │ ├── NSDateFormatterBehavior.cs │ │ │ ├── NSDateFormatterStyle.cs │ │ │ ├── NSDecimal.cs │ │ │ ├── NSDecimalNumber.cs │ │ │ ├── NSDecoderCallback.cs │ │ │ ├── NSDecoderHandler.cs │ │ │ ├── NSDictionary.cs │ │ │ ├── NSDirectoryEnumerationOptions.cs │ │ │ ├── NSDirectoryEnumerator.cs │ │ │ ├── NSDistantObjectRequest.cs │ │ │ ├── NSDistributedNotificationCenter.cs │ │ │ ├── NSEncodeHook.cs │ │ │ ├── NSEnumerateErrorHandler.cs │ │ │ ├── NSEnumerationOptions.cs │ │ │ ├── NSEnumerator.cs │ │ │ ├── NSError.cs │ │ │ ├── NSErrorEventArgs.cs │ │ │ ├── NSErrorException.cs │ │ │ ├── NSException.cs │ │ │ ├── NSExpression.cs │ │ │ ├── NSExpressionHandler.cs │ │ │ ├── NSExpressionType.cs │ │ │ ├── NSFastEnumerationState.cs │ │ │ ├── NSFastEnumerator.cs │ │ │ ├── NSFileAttributes.cs │ │ │ ├── NSFileCoordinator.cs │ │ │ ├── NSFileCoordinatorReadingOptions.cs │ │ │ ├── NSFileCoordinatorWorker.cs │ │ │ ├── NSFileCoordinatorWorkerRW.cs │ │ │ ├── NSFileCoordinatorWritingOptions.cs │ │ │ ├── NSFileHandle.cs │ │ │ ├── NSFileHandleConnectionAcceptedEventArgs.cs │ │ │ ├── NSFileHandleReadEventArgs.cs │ │ │ ├── NSFileHandleUpdateHandler.cs │ │ │ ├── NSFileManager.cs │ │ │ ├── NSFileManagerDelegate.cs │ │ │ ├── NSFileManagerItemReplacementOptions.cs │ │ │ ├── NSFilePresenter.cs │ │ │ ├── NSFileSystemAttributes.cs │ │ │ ├── NSFileType.cs │ │ │ ├── NSFileVersion.cs │ │ │ ├── NSFileVersionAddingOptions.cs │ │ │ ├── NSFileVersionReplacingOptions.cs │ │ │ ├── NSFileWrapper.cs │ │ │ ├── NSFileWrapperReadingOptions.cs │ │ │ ├── NSFileWrapperWritingOptions.cs │ │ │ ├── NSFormatter.cs │ │ │ ├── NSHttpCookie.cs │ │ │ ├── NSHttpCookieAcceptPolicy.cs │ │ │ ├── NSHttpCookieStorage.cs │ │ │ ├── NSHttpUrlResponse.cs │ │ │ ├── NSIndexPath.cs │ │ │ ├── NSIndexSet.cs │ │ │ ├── NSInputStream.cs │ │ │ ├── NSInvocation.cs │ │ │ ├── NSJsonReadingOptions.cs │ │ │ ├── NSJsonSerialization.cs │ │ │ ├── NSJsonWritingOptions.cs │ │ │ ├── NSKeyValueChange.cs │ │ │ ├── NSKeyValueObservingOptions.cs │ │ │ ├── NSKeyValueSetMutationKind.cs │ │ │ ├── NSKeyedArchiver.cs │ │ │ ├── NSKeyedArchiverDelegate.cs │ │ │ ├── NSKeyedUnarchiver.cs │ │ │ ├── NSKeyedUnarchiverDelegate.cs │ │ │ ├── NSLinguisticTag.cs │ │ │ ├── NSLinguisticTagger.cs │ │ │ ├── NSLinguisticTaggerOptions.cs │ │ │ ├── NSLingusticEnumerator.cs │ │ │ ├── NSLocale.cs │ │ │ ├── NSLocaleLanguageDirection.cs │ │ │ ├── NSMachPort.cs │ │ │ ├── NSMachPortDelegate.cs │ │ │ ├── NSMachPortRights.cs │ │ │ ├── NSMetadataItem.cs │ │ │ ├── NSMetadataQuery.cs │ │ │ ├── NSMetadataQueryAttributeValueTuple.cs │ │ │ ├── NSMetadataQueryDelegate.cs │ │ │ ├── NSMetadataQueryObject.cs │ │ │ ├── NSMetadataQueryResultGroup.cs │ │ │ ├── NSMetadataQueryValue.cs │ │ │ ├── NSMethodSignature.cs │ │ │ ├── NSMutableArray.cs │ │ │ ├── NSMutableAttributedString.cs │ │ │ ├── NSMutableCharacterSet.cs │ │ │ ├── NSMutableData.cs │ │ │ ├── NSMutableDictionary.cs │ │ │ ├── NSMutableIndexSet.cs │ │ │ ├── NSMutableOrderedSet.cs │ │ │ ├── NSMutableSet.cs │ │ │ ├── NSMutableUrlRequest.cs │ │ │ ├── NSNetDomainEventArgs.cs │ │ │ ├── NSNetService.cs │ │ │ ├── NSNetServiceBrowser.cs │ │ │ ├── NSNetServiceBrowserDelegate.cs │ │ │ ├── NSNetServiceDataEventArgs.cs │ │ │ ├── NSNetServiceDelegate.cs │ │ │ ├── NSNetServiceErrorEventArgs.cs │ │ │ ├── NSNetServiceEventArgs.cs │ │ │ ├── NSNetServiceOptions.cs │ │ │ ├── NSNetServicesStatus.cs │ │ │ ├── NSNotification.cs │ │ │ ├── NSNotificationCenter.cs │ │ │ ├── NSNotificationCoalescing.cs │ │ │ ├── NSNotificationEventArgs.cs │ │ │ ├── NSNotificationFlags.cs │ │ │ ├── NSNotificationHandler.cs │ │ │ ├── NSNotificationQueue.cs │ │ │ ├── NSNotificationSuspensionBehavior.cs │ │ │ ├── NSNull.cs │ │ │ ├── NSNumber.cs │ │ │ ├── NSNumberFormatter.cs │ │ │ ├── NSNumberFormatterBehavior.cs │ │ │ ├── NSNumberFormatterPadPosition.cs │ │ │ ├── NSNumberFormatterRoundingMode.cs │ │ │ ├── NSNumberFormatterStyle.cs │ │ │ ├── NSObject.cs │ │ │ ├── NSObjectEventArgs.cs │ │ │ ├── NSObjectFlag.cs │ │ │ ├── NSOperation.cs │ │ │ ├── NSOperationQueue.cs │ │ │ ├── NSOperationQueuePriority.cs │ │ │ ├── NSOrderedSet.cs │ │ │ ├── NSOrthography.cs │ │ │ ├── NSOutputStream.cs │ │ │ ├── NSPipe.cs │ │ │ ├── NSPort.cs │ │ │ ├── NSPortDelegate.cs │ │ │ ├── NSPortMessage.cs │ │ │ ├── NSPortNameServer.cs │ │ │ ├── NSPostingStyle.cs │ │ │ ├── NSPredicate.cs │ │ │ ├── NSPredicateEvaluator.cs │ │ │ ├── NSPredicateOperatorType.cs │ │ │ ├── NSProcessInfo.cs │ │ │ ├── NSPropertyListFormat.cs │ │ │ ├── NSPropertyListMutabilityOptions.cs │ │ │ ├── NSPropertyListReadOptions.cs │ │ │ ├── NSPropertyListSerialization.cs │ │ │ ├── NSPropertyListWriteOptions.cs │ │ │ ├── NSProxy.cs │ │ │ ├── NSPurgeableData.cs │ │ │ ├── NSRange.cs │ │ │ ├── NSRangeIterator.cs │ │ │ ├── NSRoundingMode.cs │ │ │ ├── NSRunLoop.cs │ │ │ ├── NSRunLoopMode.cs │ │ │ ├── NSSearchPath.cs │ │ │ ├── NSSearchPathDirectory.cs │ │ │ ├── NSSearchPathDomain.cs │ │ │ ├── NSSet.cs │ │ │ ├── NSSetEnumerator.cs │ │ │ ├── NSSortDescriptor.cs │ │ │ ├── NSSortOptions.cs │ │ │ ├── NSStream.cs │ │ │ ├── NSStreamDelegate.cs │ │ │ ├── NSStreamEvent.cs │ │ │ ├── NSStreamEventArgs.cs │ │ │ ├── NSStreamStatus.cs │ │ │ ├── NSString.cs │ │ │ ├── NSStringCompareOptions.cs │ │ │ ├── NSStringDrawingOptions.cs │ │ │ ├── NSStringEncoding.cs │ │ │ ├── NSTask.cs │ │ │ ├── NSTaskTerminationReason.cs │ │ │ ├── NSTextCheckingResult.cs │ │ │ ├── NSTextCheckingType.cs │ │ │ ├── NSTextCheckingTypes.cs │ │ │ ├── NSThread.cs │ │ │ ├── NSTimeZone.cs │ │ │ ├── NSTimer.cs │ │ │ ├── NSUbiquitousKeyValueStore.cs │ │ │ ├── NSUbiquitousKeyValueStoreChangeEventArgs.cs │ │ │ ├── NSUbiquitousKeyValueStoreChangeReason.cs │ │ │ ├── NSUndoManager.cs │ │ │ ├── NSUndoManagerCloseUndoGroupEventArgs.cs │ │ │ ├── NSUrl.cs │ │ │ ├── NSUrlAsyncResult.cs │ │ │ ├── NSUrlAuthenticationChallenge.cs │ │ │ ├── NSUrlBookmarkCreationOptions.cs │ │ │ ├── NSUrlBookmarkResolutionOptions.cs │ │ │ ├── NSUrlCache.cs │ │ │ ├── NSUrlCacheStoragePolicy.cs │ │ │ ├── NSUrlConnection.cs │ │ │ ├── NSUrlConnectionDataResponse.cs │ │ │ ├── NSUrlConnectionDelegate.cs │ │ │ ├── NSUrlConnectionDownloadDelegate.cs │ │ │ ├── NSUrlCredential.cs │ │ │ ├── NSUrlCredentialPersistence.cs │ │ │ ├── NSUrlCredentialStorage.cs │ │ │ ├── NSUrlDownload.cs │ │ │ ├── NSUrlDownloadDelegate.cs │ │ │ ├── NSUrlError.cs │ │ │ ├── NSUrlProtectionSpace.cs │ │ │ ├── NSUrlProtocol.cs │ │ │ ├── NSUrlProtocolClient.cs │ │ │ ├── NSUrlRequest.cs │ │ │ ├── NSUrlRequestCachePolicy.cs │ │ │ ├── NSUrlRequestNetworkServiceType.cs │ │ │ ├── NSUrlResponse.cs │ │ │ ├── NSUserDefaults.cs │ │ │ ├── NSUserNotification.cs │ │ │ ├── NSUserNotificationActivationType.cs │ │ │ ├── NSUserNotificationCenter.cs │ │ │ ├── NSUserNotificationCenterDelegate.cs │ │ │ ├── NSUuid.cs │ │ │ ├── NSValue.cs │ │ │ ├── NSValueTransformer.cs │ │ │ ├── NSVolumeEnumerationOptions.cs │ │ │ ├── NSWritingDirection.cs │ │ │ ├── NSZone.cs │ │ │ ├── ObjCException.cs │ │ │ ├── OutletAttribute.cs │ │ │ ├── PreserveAttribute.cs │ │ │ ├── ProtocolAttribute.cs │ │ │ ├── ProtocolMemberAttribute.cs │ │ │ ├── RegisterAttribute.cs │ │ │ ├── UNCDidActivateNotificationEventArgs.cs │ │ │ ├── UNCDidDeliverNotificationEventArgs.cs │ │ │ ├── UNCShouldPresentNotification.cs │ │ │ └── You_Should_Not_Call_base_In_This_Method.cs │ │ │ ├── HttpVersion.cs │ │ │ ├── ImageIO │ │ │ ├── CGImageDestination.cs │ │ │ ├── CGImageDestinationOptions.cs │ │ │ ├── CGImageOptions.cs │ │ │ ├── CGImageProperties.cs │ │ │ ├── CGImageSource.cs │ │ │ ├── CGImageSourceStatus.cs │ │ │ └── CGImageThumbnailOptions.cs │ │ │ ├── ImageKit │ │ │ ├── IKCameraDeviceView.cs │ │ │ ├── IKCameraDeviceViewDelegate.cs │ │ │ ├── IKCameraDeviceViewDisplayMode.cs │ │ │ ├── IKCameraDeviceViewNSErrorEventArgs.cs │ │ │ ├── IKCameraDeviceViewTransferMode.cs │ │ │ ├── IKCellsStyle.cs │ │ │ ├── IKDeviceBrowserView.cs │ │ │ ├── IKDeviceBrowserViewDelegate.cs │ │ │ ├── IKDeviceBrowserViewDisplayMode.cs │ │ │ ├── IKDeviceBrowserViewNSErrorEventArgs.cs │ │ │ ├── IKFilterBrowserPanel.cs │ │ │ ├── IKFilterBrowserPanelStyleMask.cs │ │ │ ├── IKFilterBrowserView.cs │ │ │ ├── IKFilterCustomUIProvider.cs │ │ │ ├── IKFilterUIView.cs │ │ │ ├── IKGroupStyle.cs │ │ │ ├── IKImageBrowserCell.cs │ │ │ ├── IKImageBrowserCellState.cs │ │ │ ├── IKImageBrowserDataSource.cs │ │ │ ├── IKImageBrowserDelegate.cs │ │ │ ├── IKImageBrowserDropOperation.cs │ │ │ ├── IKImageBrowserItem.cs │ │ │ ├── IKImageBrowserView.cs │ │ │ ├── IKImageBrowserViewEventEventArgs.cs │ │ │ ├── IKImageBrowserViewIndexEventArgs.cs │ │ │ ├── IKImageBrowserViewIndexEventEventArgs.cs │ │ │ ├── IKImageEditPanel.cs │ │ │ ├── IKImageEditPanelDataSource.cs │ │ │ ├── IKImageView.cs │ │ │ ├── IKPictureTaker.cs │ │ │ ├── IKSaveOptions.cs │ │ │ ├── IKSaveOptionsDelegate.cs │ │ │ ├── IKScannerDeviceView.cs │ │ │ ├── IKScannerDeviceViewDelegate.cs │ │ │ ├── IKScannerDeviceViewDisplayMode.cs │ │ │ ├── IKScannerDeviceViewErrorEventArgs.cs │ │ │ ├── IKScannerDeviceViewScanEventArgs.cs │ │ │ ├── IKScannerDeviceViewTransferMode.cs │ │ │ ├── IKSlideshow.cs │ │ │ ├── IKSlideshowDataSource.cs │ │ │ └── SaveOptionsShouldShowUTType.cs │ │ │ ├── JavaScriptCore │ │ │ ├── IJSExport.cs │ │ │ ├── JSClassAttributes.cs │ │ │ ├── JSContext.cs │ │ │ ├── JSContextExceptionHandler.cs │ │ │ ├── JSExport.cs │ │ │ ├── JSExportWrapper.cs │ │ │ ├── JSManagedValue.cs │ │ │ ├── JSPromiseCreationExecutor.cs │ │ │ ├── JSPropertyAttributes.cs │ │ │ ├── JSPropertyDescriptorKeys.cs │ │ │ ├── JSType.cs │ │ │ ├── JSValue.cs │ │ │ └── JSVirtualMachine.cs │ │ │ ├── Libraries.cs │ │ │ ├── ObjCRuntime │ │ │ ├── ArgumentSemantic.cs │ │ │ ├── BaseWrapper.cs │ │ │ ├── BlockDescriptor.cs │ │ │ ├── BlockFlags.cs │ │ │ ├── BlockLiteral.cs │ │ │ ├── Class.cs │ │ │ ├── CompileFlagsAttribute.cs │ │ │ ├── DisposableObject.cs │ │ │ ├── Dlfcn.cs │ │ │ ├── INativeObject.cs │ │ │ ├── LionAttribute.cs │ │ │ ├── Messaging.cs │ │ │ ├── MethodDescription.cs │ │ │ ├── MountainLionAttribute.cs │ │ │ ├── NativeHandle.cs │ │ │ ├── NativeObjectExtensions.cs │ │ │ ├── Protocol.cs │ │ │ ├── Runtime.cs │ │ │ ├── RuntimeEx.cs │ │ │ ├── Selector.cs │ │ │ ├── SinceAttribute.cs │ │ │ ├── ThreadSafeAttribute.cs │ │ │ ├── TrampolineBlockBase.cs │ │ │ └── UserDelegateTypeAttribute.cs │ │ │ ├── OpenAL │ │ │ ├── AL.cs │ │ │ ├── ALBufferState.cs │ │ │ ├── ALCapability.cs │ │ │ ├── ALDistanceModel.cs │ │ │ ├── ALError.cs │ │ │ ├── ALFormat.cs │ │ │ ├── ALGetBufferi.cs │ │ │ ├── ALGetFloat.cs │ │ │ ├── ALGetInteger.cs │ │ │ ├── ALGetSourcei.cs │ │ │ ├── ALGetString.cs │ │ │ ├── ALListener3f.cs │ │ │ ├── ALListenerf.cs │ │ │ ├── ALListenerfv.cs │ │ │ ├── ALSource3f.cs │ │ │ ├── ALSource3i.cs │ │ │ ├── ALSourceState.cs │ │ │ ├── ALSourceType.cs │ │ │ ├── ALSourceb.cs │ │ │ ├── ALSourcef.cs │ │ │ ├── ALSourcei.cs │ │ │ ├── Alc.cs │ │ │ ├── AlcContextAttributes.cs │ │ │ ├── AlcError.cs │ │ │ ├── AlcGetInteger.cs │ │ │ ├── AlcGetString.cs │ │ │ ├── AlcGetStringList.cs │ │ │ ├── BlittableValueType.cs │ │ │ └── ContextHandle.cs │ │ │ ├── OpenGL │ │ │ ├── AccumOp.cs │ │ │ ├── ActiveAttribType.cs │ │ │ ├── ActiveSubroutineUniformParameter.cs │ │ │ ├── ActiveUniformBlockParameter.cs │ │ │ ├── ActiveUniformParameter.cs │ │ │ ├── ActiveUniformType.cs │ │ │ ├── All.cs │ │ │ ├── AlphaFunction.cs │ │ │ ├── AmdCompressed3DcTexture.cs │ │ │ ├── AmdCompressedAtcTexture.cs │ │ │ ├── AmdConservativeDepth.cs │ │ │ ├── AmdDebugOutput.cs │ │ │ ├── AmdDepthClampSeparate.cs │ │ │ ├── AmdDrawBuffersBlend.cs │ │ │ ├── AmdNameGenDelete.cs │ │ │ ├── AmdPerformanceMonitor.cs │ │ │ ├── AmdProgramBinaryZ400.cs │ │ │ ├── AmdSeamlessCubemapPerTexture.cs │ │ │ ├── AmdShaderStencilExport.cs │ │ │ ├── AmdTextureTexture4.cs │ │ │ ├── AmdTransformFeedback3LinesTriangles.cs │ │ │ ├── AmdVertexShaderTesselator.cs │ │ │ ├── AngleFramebufferBlit.cs │ │ │ ├── AngleFramebufferMultisample.cs │ │ │ ├── AppleAuxDepthStencil.cs │ │ │ ├── AppleClientStorage.cs │ │ │ ├── AppleElementArray.cs │ │ │ ├── AppleFence.cs │ │ │ ├── AppleFloatPixels.cs │ │ │ ├── AppleFlushBufferRange.cs │ │ │ ├── AppleObjectPurgeable.cs │ │ │ ├── AppleRgb422.cs │ │ │ ├── AppleRowBytes.cs │ │ │ ├── AppleSpecularVector.cs │ │ │ ├── AppleTextureRange.cs │ │ │ ├── AppleTransformHint.cs │ │ │ ├── AppleVertexArrayObject.cs │ │ │ ├── AppleVertexArrayRange.cs │ │ │ ├── AppleVertexProgramEvaluators.cs │ │ │ ├── AppleYcbcr422.cs │ │ │ ├── ArbBlendFuncExtended.cs │ │ │ ├── ArbClEvent.cs │ │ │ ├── ArbColorBufferFloat.cs │ │ │ ├── ArbCompatibility.cs │ │ │ ├── ArbCopyBuffer.cs │ │ │ ├── ArbDebugOutput.cs │ │ │ ├── ArbDepthBufferFloat.cs │ │ │ ├── ArbDepthClamp.cs │ │ │ ├── ArbDepthTexture.cs │ │ │ ├── ArbDrawBuffers.cs │ │ │ ├── ArbDrawBuffersBlend.cs │ │ │ ├── ArbDrawElementsBaseVertex.cs │ │ │ ├── ArbDrawIndirect.cs │ │ │ ├── ArbDrawInstanced.cs │ │ │ ├── ArbEs2Compatibility.cs │ │ │ ├── ArbExplicitAttribLocation.cs │ │ │ ├── ArbFragmentCoordConventions.cs │ │ │ ├── ArbFragmentProgram.cs │ │ │ ├── ArbFragmentProgramShadow.cs │ │ │ ├── ArbFragmentShader.cs │ │ │ ├── ArbFramebufferObject.cs │ │ │ ├── ArbFramebufferObjectDeprecated.cs │ │ │ ├── ArbFramebufferSrgb.cs │ │ │ ├── ArbGeometryShader4.cs │ │ │ ├── ArbGetProgramBinary.cs │ │ │ ├── ArbGpuShader5.cs │ │ │ ├── ArbGpuShaderFp64.cs │ │ │ ├── ArbHalfFloatPixel.cs │ │ │ ├── ArbHalfFloatVertex.cs │ │ │ ├── ArbImaging.cs │ │ │ ├── ArbImagingDeprecated.cs │ │ │ ├── ArbInstancedArrays.cs │ │ │ ├── ArbMapBufferRange.cs │ │ │ ├── ArbMatrixPalette.cs │ │ │ ├── ArbMultisample.cs │ │ │ ├── ArbMultitexture.cs │ │ │ ├── ArbOcclusionQuery.cs │ │ │ ├── ArbOcclusionQuery2.cs │ │ │ ├── ArbPixelBufferObject.cs │ │ │ ├── ArbPointParameters.cs │ │ │ ├── ArbPointSprite.cs │ │ │ ├── ArbProvokingVertex.cs │ │ │ ├── ArbRobustness.cs │ │ │ ├── ArbSampleShading.cs │ │ │ ├── ArbSamplerObjects.cs │ │ │ ├── ArbSeamlessCubeMap.cs │ │ │ ├── ArbSeparateShaderObjects.cs │ │ │ ├── ArbShaderBitEncoding.cs │ │ │ ├── ArbShaderObjects.cs │ │ │ ├── ArbShaderPrecision.cs │ │ │ ├── ArbShaderStencilExport.cs │ │ │ ├── ArbShaderSubroutine.cs │ │ │ ├── ArbShaderTextureLod.cs │ │ │ ├── ArbShadingLanguage100.cs │ │ │ ├── ArbShadingLanguageInclude.cs │ │ │ ├── ArbShadow.cs │ │ │ ├── ArbShadowAmbient.cs │ │ │ ├── ArbSync.cs │ │ │ ├── ArbTessellationShader.cs │ │ │ ├── ArbTextureBorderClamp.cs │ │ │ ├── ArbTextureBufferObject.cs │ │ │ ├── ArbTextureBufferObjectRgb32.cs │ │ │ ├── ArbTextureCompression.cs │ │ │ ├── ArbTextureCompressionBptc.cs │ │ │ ├── ArbTextureCompressionRgtc.cs │ │ │ ├── ArbTextureCubeMap.cs │ │ │ ├── ArbTextureCubeMapArray.cs │ │ │ ├── ArbTextureEnvAdd.cs │ │ │ ├── ArbTextureEnvCombine.cs │ │ │ ├── ArbTextureEnvCrossbar.cs │ │ │ ├── ArbTextureEnvDot3.cs │ │ │ ├── ArbTextureFloat.cs │ │ │ ├── ArbTextureGather.cs │ │ │ ├── ArbTextureMirroredRepeat.cs │ │ │ ├── ArbTextureMultisample.cs │ │ │ ├── ArbTextureNonPowerOfTwo.cs │ │ │ ├── ArbTextureQueryLod.cs │ │ │ ├── ArbTextureRectangle.cs │ │ │ ├── ArbTextureRg.cs │ │ │ ├── ArbTextureRgb10A2ui.cs │ │ │ ├── ArbTextureSwizzle.cs │ │ │ ├── ArbTimerQuery.cs │ │ │ ├── ArbTransformFeedback2.cs │ │ │ ├── ArbTransformFeedback3.cs │ │ │ ├── ArbTransposeMatrix.cs │ │ │ ├── ArbUniformBufferObject.cs │ │ │ ├── ArbVertexArrayBgra.cs │ │ │ ├── ArbVertexArrayObject.cs │ │ │ ├── ArbVertexAttrib64bit.cs │ │ │ ├── ArbVertexBlend.cs │ │ │ ├── ArbVertexBufferObject.cs │ │ │ ├── ArbVertexProgram.cs │ │ │ ├── ArbVertexShader.cs │ │ │ ├── ArbVertexType2101010Rev.cs │ │ │ ├── ArbViewportArray.cs │ │ │ ├── ArbWindowPos.cs │ │ │ ├── ArmMaliShaderBinary.cs │ │ │ ├── ArrayCap.cs │ │ │ ├── AssemblyProgramFormatArb.cs │ │ │ ├── AssemblyProgramParameterArb.cs │ │ │ ├── AssemblyProgramStringParameterArb.cs │ │ │ ├── AssemblyProgramTargetArb.cs │ │ │ ├── AtiDrawBuffers.cs │ │ │ ├── AtiElementArray.cs │ │ │ ├── AtiEnvmapBumpmap.cs │ │ │ ├── AtiFragmentShader.cs │ │ │ ├── AtiMapObjectBuffer.cs │ │ │ ├── AtiMeminfo.cs │ │ │ ├── AtiPixelFormatFloat.cs │ │ │ ├── AtiPnTriangles.cs │ │ │ ├── AtiSeparateStencil.cs │ │ │ ├── AtiTextFragmentShader.cs │ │ │ ├── AtiTextureEnvCombine3.cs │ │ │ ├── AtiTextureFloat.cs │ │ │ ├── AtiTextureMirrorOnce.cs │ │ │ ├── AtiVertexArrayObject.cs │ │ │ ├── AtiVertexAttribArrayObject.cs │ │ │ ├── AtiVertexStreams.cs │ │ │ ├── AttribMask.cs │ │ │ ├── BeginFeedbackMode.cs │ │ │ ├── BeginMode.cs │ │ │ ├── BinaryFormat.cs │ │ │ ├── BlendEquationMode.cs │ │ │ ├── BlendEquationModeExt.cs │ │ │ ├── BlendingFactorDest.cs │ │ │ ├── BlendingFactorSrc.cs │ │ │ ├── BlitFramebufferFilter.cs │ │ │ ├── Boolean.cs │ │ │ ├── BufferAccess.cs │ │ │ ├── BufferAccessArb.cs │ │ │ ├── BufferAccessMask.cs │ │ │ ├── BufferParameterApple.cs │ │ │ ├── BufferParameterName.cs │ │ │ ├── BufferParameterNameArb.cs │ │ │ ├── BufferPointer.cs │ │ │ ├── BufferPointerNameArb.cs │ │ │ ├── BufferTarget.cs │ │ │ ├── BufferTargetArb.cs │ │ │ ├── BufferUsageArb.cs │ │ │ ├── BufferUsageHint.cs │ │ │ ├── CGLContext.cs │ │ │ ├── CGLErrorCode.cs │ │ │ ├── CGLPixelFormat.cs │ │ │ ├── CGLPixelFormatAttribute.cs │ │ │ ├── ClampColorMode.cs │ │ │ ├── ClampColorTarget.cs │ │ │ ├── ClearBuffer.cs │ │ │ ├── ClearBufferMask.cs │ │ │ ├── ClientAttribMask.cs │ │ │ ├── ClipPlaneName.cs │ │ │ ├── Color4.cs │ │ │ ├── ColorMaterialFace.cs │ │ │ ├── ColorMaterialParameter.cs │ │ │ ├── ColorPointerType.cs │ │ │ ├── ColorTableParameterPName.cs │ │ │ ├── ColorTableParameterPNameSgi.cs │ │ │ ├── ColorTableTarget.cs │ │ │ ├── ColorTableTargetSgi.cs │ │ │ ├── ConditionalRenderType.cs │ │ │ ├── ConvolutionBorderModeExt.cs │ │ │ ├── ConvolutionParameter.cs │ │ │ ├── ConvolutionParameterExt.cs │ │ │ ├── ConvolutionParameterValue.cs │ │ │ ├── ConvolutionTarget.cs │ │ │ ├── ConvolutionTargetExt.cs │ │ │ ├── CullFaceMode.cs │ │ │ ├── DataType.cs │ │ │ ├── DepthFunction.cs │ │ │ ├── DrawBufferMode.cs │ │ │ ├── DrawBuffersEnum.cs │ │ │ ├── DrawElementsType.cs │ │ │ ├── EnableCap.cs │ │ │ ├── ErrorCode.cs │ │ │ ├── Ext422Pixels.cs │ │ │ ├── ExtAbgr.cs │ │ │ ├── ExtBgra.cs │ │ │ ├── ExtBindableUniform.cs │ │ │ ├── ExtBlendColor.cs │ │ │ ├── ExtBlendEquationSeparate.cs │ │ │ ├── ExtBlendFuncSeparate.cs │ │ │ ├── ExtBlendLogicOp.cs │ │ │ ├── ExtBlendMinmax.cs │ │ │ ├── ExtBlendSubtract.cs │ │ │ ├── ExtClipVolumeHint.cs │ │ │ ├── ExtCmyka.cs │ │ │ ├── ExtColorSubtable.cs │ │ │ ├── ExtCompiledVertexArray.cs │ │ │ ├── ExtConvolution.cs │ │ │ ├── ExtCoordinateFrame.cs │ │ │ ├── ExtCopyTexture.cs │ │ │ ├── ExtCullVertex.cs │ │ │ ├── ExtDepthBoundsTest.cs │ │ │ ├── ExtDirectStateAccess.cs │ │ │ ├── ExtDiscardFramebuffer.cs │ │ │ ├── ExtDrawBuffers2.cs │ │ │ ├── ExtDrawInstanced.cs │ │ │ ├── ExtDrawRangeElements.cs │ │ │ ├── ExtFogCoord.cs │ │ │ ├── ExtFramebufferBlit.cs │ │ │ ├── ExtFramebufferMultisample.cs │ │ │ ├── ExtFramebufferObject.cs │ │ │ ├── ExtFramebufferSrgb.cs │ │ │ ├── ExtGeometryShader4.cs │ │ │ ├── ExtGpuProgramParameters.cs │ │ │ ├── ExtGpuShader4.cs │ │ │ ├── ExtHistogram.cs │ │ │ ├── ExtIndexArrayFormats.cs │ │ │ ├── ExtIndexFunc.cs │ │ │ ├── ExtIndexMaterial.cs │ │ │ ├── ExtIndexTexture.cs │ │ │ ├── ExtLightTexture.cs │ │ │ ├── ExtMiscAttribute.cs │ │ │ ├── ExtMultiDrawArrays.cs │ │ │ ├── ExtMultisample.cs │ │ │ ├── ExtPackedDepthStencil.cs │ │ │ ├── ExtPackedFloat.cs │ │ │ ├── ExtPackedPixels.cs │ │ │ ├── ExtPalettedTexture.cs │ │ │ ├── ExtPixelBufferObject.cs │ │ │ ├── ExtPixelTransform.cs │ │ │ ├── ExtPixelTransformColorTable.cs │ │ │ ├── ExtPointParameters.cs │ │ │ ├── ExtPolygonOffset.cs │ │ │ ├── ExtProvokingVertex.cs │ │ │ ├── ExtRescaleNormal.cs │ │ │ ├── ExtSecondaryColor.cs │ │ │ ├── ExtSeparateShaderObjects.cs │ │ │ ├── ExtSeparateSpecularColor.cs │ │ │ ├── ExtShaderImageLoadStore.cs │ │ │ ├── ExtShadowFuncs.cs │ │ │ ├── ExtSharedTexturePalette.cs │ │ │ ├── ExtStencilClearTag.cs │ │ │ ├── ExtStencilTwoSide.cs │ │ │ ├── ExtStencilWrap.cs │ │ │ ├── ExtSubtexture.cs │ │ │ ├── ExtTexture.cs │ │ │ ├── ExtTexture3D.cs │ │ │ ├── ExtTextureArray.cs │ │ │ ├── ExtTextureBufferObject.cs │ │ │ ├── ExtTextureCompressionLatc.cs │ │ │ ├── ExtTextureCompressionRgtc.cs │ │ │ ├── ExtTextureCompressionS3tc.cs │ │ │ ├── ExtTextureCubeMap.cs │ │ │ ├── ExtTextureEnvAdd.cs │ │ │ ├── ExtTextureEnvCombine.cs │ │ │ ├── ExtTextureEnvDot3.cs │ │ │ ├── ExtTextureFilterAnisotropic.cs │ │ │ ├── ExtTextureInteger.cs │ │ │ ├── ExtTextureLodBias.cs │ │ │ ├── ExtTextureMirrorClamp.cs │ │ │ ├── ExtTextureObject.cs │ │ │ ├── ExtTexturePerturbNormal.cs │ │ │ ├── ExtTextureSharedExponent.cs │ │ │ ├── ExtTextureSnorm.cs │ │ │ ├── ExtTextureSrgb.cs │ │ │ ├── ExtTextureSwizzle.cs │ │ │ ├── ExtTextureType2101010Rev.cs │ │ │ ├── ExtTimerQuery.cs │ │ │ ├── ExtTransformFeedback.cs │ │ │ ├── ExtVertexArray.cs │ │ │ ├── ExtVertexArrayBgra.cs │ │ │ ├── ExtVertexAttrib64bit.cs │ │ │ ├── ExtVertexShader.cs │ │ │ ├── ExtVertexWeighting.cs │ │ │ ├── FeedBackToken.cs │ │ │ ├── FeedbackType.cs │ │ │ ├── FfdMaskSgix.cs │ │ │ ├── FfdTargetSgix.cs │ │ │ ├── FogMode.cs │ │ │ ├── FogParameter.cs │ │ │ ├── FogPointerType.cs │ │ │ ├── FragmentLightModelParameterSgix.cs │ │ │ ├── FrameEventArgs.cs │ │ │ ├── FramebufferAttachment.cs │ │ │ ├── FramebufferAttachmentComponentType.cs │ │ │ ├── FramebufferAttachmentObjectType.cs │ │ │ ├── FramebufferErrorCode.cs │ │ │ ├── FramebufferParameterName.cs │ │ │ ├── FramebufferTarget.cs │ │ │ ├── FrontFaceDirection.cs │ │ │ ├── GL.cs │ │ │ ├── GenerateMipmapTarget.cs │ │ │ ├── GetColorTableParameterPName.cs │ │ │ ├── GetColorTableParameterPNameSgi.cs │ │ │ ├── GetConvolutionParameter.cs │ │ │ ├── GetConvolutionParameterPName.cs │ │ │ ├── GetHistogramParameterPName.cs │ │ │ ├── GetHistogramParameterPNameExt.cs │ │ │ ├── GetIndexedPName.cs │ │ │ ├── GetMapQuery.cs │ │ │ ├── GetMinmaxParameterPName.cs │ │ │ ├── GetMinmaxParameterPNameExt.cs │ │ │ ├── GetMultisamplePName.cs │ │ │ ├── GetPName.cs │ │ │ ├── GetPixelMap.cs │ │ │ ├── GetPointervPName.cs │ │ │ ├── GetQueryObjectParam.cs │ │ │ ├── GetQueryParam.cs │ │ │ ├── GetTextureParameter.cs │ │ │ ├── Gl3DfxMultisample.cs │ │ │ ├── Gl3DfxTbuffer.cs │ │ │ ├── Gl3DfxTextureCompressionFxt1.cs │ │ │ ├── GremedyFrameTerminator.cs │ │ │ ├── GremedyStringMarker.cs │ │ │ ├── Half.cs │ │ │ ├── HintMode.cs │ │ │ ├── HintTarget.cs │ │ │ ├── HistogramTarget.cs │ │ │ ├── HistogramTargetExt.cs │ │ │ ├── HpConvolutionBorderModes.cs │ │ │ ├── HpImageTransform.cs │ │ │ ├── HpOcclusionTest.cs │ │ │ ├── HpTextureLighting.cs │ │ │ ├── IGameWindow.cs │ │ │ ├── INativeWindow.cs │ │ │ ├── IbmCullVertex.cs │ │ │ ├── IbmMultimodeDrawArrays.cs │ │ │ ├── IbmRasterposClip.cs │ │ │ ├── IbmTextureMirroredRepeat.cs │ │ │ ├── IbmVertexArrayLists.cs │ │ │ ├── ImgMultisampledRenderToTexture.cs │ │ │ ├── ImgProgramBinary.cs │ │ │ ├── ImgShaderBinary.cs │ │ │ ├── ImgTextureCompressionPvrtc.cs │ │ │ ├── ImgTextureEnvEnhancedFixedFunction.cs │ │ │ ├── IndexPointerType.cs │ │ │ ├── IndexedEnableCap.cs │ │ │ ├── IngrColorClamp.cs │ │ │ ├── IngrInterlaceRead.cs │ │ │ ├── IngrPaletteBuffer.cs │ │ │ ├── IntelParallelArrays.cs │ │ │ ├── IntelTextureScissor.cs │ │ │ ├── InterleavedArrayFormat.cs │ │ │ ├── LightEnvModeSgix.cs │ │ │ ├── LightEnvParameterSgix.cs │ │ │ ├── LightModelColorControl.cs │ │ │ ├── LightModelParameter.cs │ │ │ ├── LightName.cs │ │ │ ├── LightParameter.cs │ │ │ ├── ListMode.cs │ │ │ ├── ListNameType.cs │ │ │ ├── ListParameterName.cs │ │ │ ├── LogicOp.cs │ │ │ ├── MapTarget.cs │ │ │ ├── MaterialFace.cs │ │ │ ├── MaterialParameter.cs │ │ │ ├── MathHelper.cs │ │ │ ├── Matrix4.cs │ │ │ ├── Matrix4d.cs │ │ │ ├── MatrixMode.cs │ │ │ ├── MatrixModeArb.cs │ │ │ ├── MesaPackInvert.cs │ │ │ ├── MesaPackedDepthStencil.cs │ │ │ ├── MesaProgramDebug.cs │ │ │ ├── MesaResizeBuffers.cs │ │ │ ├── MesaShaderDebug.cs │ │ │ ├── MesaTrace.cs │ │ │ ├── MesaWindowPos.cs │ │ │ ├── MesaYcbcrTexture.cs │ │ │ ├── MesaxTextureStack.cs │ │ │ ├── MeshMode1.cs │ │ │ ├── MeshMode2.cs │ │ │ ├── MinmaxTarget.cs │ │ │ ├── MinmaxTargetExt.cs │ │ │ ├── MonoMacGameView.cs │ │ │ ├── NormalPointerType.cs │ │ │ ├── NvBlendSquare.cs │ │ │ ├── NvConditionalRender.cs │ │ │ ├── NvCopyDepthToColor.cs │ │ │ ├── NvCopyImage.cs │ │ │ ├── NvCoverageSample.cs │ │ │ ├── NvDepthBufferFloat.cs │ │ │ ├── NvDepthClamp.cs │ │ │ ├── NvDepthNonlinear.cs │ │ │ ├── NvEvaluators.cs │ │ │ ├── NvExplicitMultisample.cs │ │ │ ├── NvFence.cs │ │ │ ├── NvFloatBuffer.cs │ │ │ ├── NvFogDistance.cs │ │ │ ├── NvFragmentProgram.cs │ │ │ ├── NvFragmentProgram2.cs │ │ │ ├── NvFragmentProgram4.cs │ │ │ ├── NvFragmentProgramOption.cs │ │ │ ├── NvFramebufferMultisampleCoverage.cs │ │ │ ├── NvGeometryProgram4.cs │ │ │ ├── NvGeometryShader4.cs │ │ │ ├── NvGpuProgram4.cs │ │ │ ├── NvGpuProgram5.cs │ │ │ ├── NvGpuShader5.cs │ │ │ ├── NvHalfFloat.cs │ │ │ ├── NvLightMaxExponent.cs │ │ │ ├── NvMultisampleCoverage.cs │ │ │ ├── NvMultisampleFilterHint.cs │ │ │ ├── NvOcclusionQuery.cs │ │ │ ├── NvPackedDepthStencil.cs │ │ │ ├── NvParameterBufferObject.cs │ │ │ ├── NvParameterBufferObject2.cs │ │ │ ├── NvPixelDataRange.cs │ │ │ ├── NvPointSprite.cs │ │ │ ├── NvPresentVideo.cs │ │ │ ├── NvPrimitiveRestart.cs │ │ │ ├── NvRegisterCombiners.cs │ │ │ ├── NvRegisterCombiners2.cs │ │ │ ├── NvShaderBufferLoad.cs │ │ │ ├── NvShaderBufferStore.cs │ │ │ ├── NvTessellationProgram5.cs │ │ │ ├── NvTexgenEmboss.cs │ │ │ ├── NvTexgenReflection.cs │ │ │ ├── NvTextureBarrier.cs │ │ │ ├── NvTextureCompressionVtc.cs │ │ │ ├── NvTextureEnvCombine4.cs │ │ │ ├── NvTextureExpandNormal.cs │ │ │ ├── NvTextureRectangle.cs │ │ │ ├── NvTextureShader.cs │ │ │ ├── NvTextureShader2.cs │ │ │ ├── NvTextureShader3.cs │ │ │ ├── NvTransformFeedback.cs │ │ │ ├── NvTransformFeedback2.cs │ │ │ ├── NvVdpauInterop.cs │ │ │ ├── NvVertexArrayRange.cs │ │ │ ├── NvVertexArrayRange2.cs │ │ │ ├── NvVertexAttribInteger64bit.cs │ │ │ ├── NvVertexBufferUnifiedMemory.cs │ │ │ ├── NvVertexProgram.cs │ │ │ ├── NvVertexProgram11.cs │ │ │ ├── NvVertexProgram2.cs │ │ │ ├── NvVertexProgram2Option.cs │ │ │ ├── NvVertexProgram3.cs │ │ │ ├── NvVertexProgram4.cs │ │ │ ├── NvVideoCapture.cs │ │ │ ├── OesBlendEquationSeparate.cs │ │ │ ├── OesBlendFuncSeparate.cs │ │ │ ├── OesBlendSubtract.cs │ │ │ ├── OesCompressedEtc1Rgb8Texture.cs │ │ │ ├── OesCompressedPalettedTexture.cs │ │ │ ├── OesDepth24.cs │ │ │ ├── OesDepth32.cs │ │ │ ├── OesDepthTexture.cs │ │ │ ├── OesDrawTexture.cs │ │ │ ├── OesEglImageExternal.cs │ │ │ ├── OesElementIndexUint.cs │ │ │ ├── OesFixedPoint.cs │ │ │ ├── OesFramebufferObject.cs │ │ │ ├── OesGetProgramBinary.cs │ │ │ ├── OesMapbuffer.cs │ │ │ ├── OesMatrixGet.cs │ │ │ ├── OesMatrixPalette.cs │ │ │ ├── OesPackedDepthStencil.cs │ │ │ ├── OesPointSizeArray.cs │ │ │ ├── OesPointSprite.cs │ │ │ ├── OesReadFormat.cs │ │ │ ├── OesRgb8Rgba8.cs │ │ │ ├── OesStandardDerivatives.cs │ │ │ ├── OesStencil1.cs │ │ │ ├── OesStencil4.cs │ │ │ ├── OesStencil8.cs │ │ │ ├── OesStencilWrap.cs │ │ │ ├── OesTexture3D.cs │ │ │ ├── OesTextureCubeMap.cs │ │ │ ├── OesTextureEnvCrossbar.cs │ │ │ ├── OesTextureFloat.cs │ │ │ ├── OesTextureMirroredRepeat.cs │ │ │ ├── OesVertexHalfFloat.cs │ │ │ ├── OesVertexType1010102.cs │ │ │ ├── OmlInterlace.cs │ │ │ ├── OmlResample.cs │ │ │ ├── OmlSubsample.cs │ │ │ ├── PackedPointerType.cs │ │ │ ├── PatchParameterFloat.cs │ │ │ ├── PatchParameterInt.cs │ │ │ ├── PgiMiscHints.cs │ │ │ ├── PgiVertexHints.cs │ │ │ ├── PixelCopyType.cs │ │ │ ├── PixelFormat.cs │ │ │ ├── PixelInternalFormat.cs │ │ │ ├── PixelMap.cs │ │ │ ├── PixelStoreParameter.cs │ │ │ ├── PixelStoreResampleMode.cs │ │ │ ├── PixelStoreSubsampleRate.cs │ │ │ ├── PixelTexGenMode.cs │ │ │ ├── PixelTexGenParameterNameSgis.cs │ │ │ ├── PixelTransferParameter.cs │ │ │ ├── PixelType.cs │ │ │ ├── PointParameterName.cs │ │ │ ├── PointParameterNameSgis.cs │ │ │ ├── PointSpriteCoordOriginParameter.cs │ │ │ ├── PolygonMode.cs │ │ │ ├── ProgramParameter.cs │ │ │ ├── ProgramPipelineParameter.cs │ │ │ ├── ProgramStageMask.cs │ │ │ ├── ProgramStageParameter.cs │ │ │ ├── ProvokingVertexMode.cs │ │ │ ├── QcomDriverControl.cs │ │ │ ├── QcomExtendedGet.cs │ │ │ ├── QcomWriteonlyRendering.cs │ │ │ ├── Quaternion.cs │ │ │ ├── Quaterniond.cs │ │ │ ├── QueryCounterTarget.cs │ │ │ ├── QueryTarget.cs │ │ │ ├── ReadBufferMode.cs │ │ │ ├── RendScreenCoordinates.cs │ │ │ ├── RenderbufferParameterName.cs │ │ │ ├── RenderbufferStorage.cs │ │ │ ├── RenderbufferTarget.cs │ │ │ ├── RenderingMode.cs │ │ │ ├── S3S3tc.cs │ │ │ ├── SamplePatternSgis.cs │ │ │ ├── SamplerParameter.cs │ │ │ ├── SeparableTarget.cs │ │ │ ├── SeparableTargetExt.cs │ │ │ ├── SgiColorMatrix.cs │ │ │ ├── SgiColorTable.cs │ │ │ ├── SgiDepthPassInstrument.cs │ │ │ ├── SgiTextureColorTable.cs │ │ │ ├── SgisDetailTexture.cs │ │ │ ├── SgisFogFunction.cs │ │ │ ├── SgisGenerateMipmap.cs │ │ │ ├── SgisMultisample.cs │ │ │ ├── SgisPixelTexture.cs │ │ │ ├── SgisPointLineTexgen.cs │ │ │ ├── SgisPointParameters.cs │ │ │ ├── SgisSharpenTexture.cs │ │ │ ├── SgisTexture4D.cs │ │ │ ├── SgisTextureBorderClamp.cs │ │ │ ├── SgisTextureColorMask.cs │ │ │ ├── SgisTextureEdgeClamp.cs │ │ │ ├── SgisTextureFilter4.cs │ │ │ ├── SgisTextureLod.cs │ │ │ ├── SgisTextureSelect.cs │ │ │ ├── SgixAsync.cs │ │ │ ├── SgixAsyncHistogram.cs │ │ │ ├── SgixAsyncPixel.cs │ │ │ ├── SgixBlendAlphaMinmax.cs │ │ │ ├── SgixCalligraphicFragment.cs │ │ │ ├── SgixClipmap.cs │ │ │ ├── SgixConvolutionAccuracy.cs │ │ │ ├── SgixDepthPassInstrument.cs │ │ │ ├── SgixDepthTexture.cs │ │ │ ├── SgixFlushRaster.cs │ │ │ ├── SgixFogOffset.cs │ │ │ ├── SgixFogScale.cs │ │ │ ├── SgixFragmentLighting.cs │ │ │ ├── SgixFragmentsInstrument.cs │ │ │ ├── SgixFramezoom.cs │ │ │ ├── SgixIccTexture.cs │ │ │ ├── SgixImpactPixelTexture.cs │ │ │ ├── SgixInstruments.cs │ │ │ ├── SgixInterlace.cs │ │ │ ├── SgixIrInstrument1.cs │ │ │ ├── SgixLineQualityHint.cs │ │ │ ├── SgixListPriority.cs │ │ │ ├── SgixPixelTexture.cs │ │ │ ├── SgixPixelTiles.cs │ │ │ ├── SgixPolynomialFfd.cs │ │ │ ├── SgixReferencePlane.cs │ │ │ ├── SgixResample.cs │ │ │ ├── SgixScalebiasHint.cs │ │ │ ├── SgixShadow.cs │ │ │ ├── SgixShadowAmbient.cs │ │ │ ├── SgixSlim.cs │ │ │ ├── SgixSprite.cs │ │ │ ├── SgixSubsample.cs │ │ │ ├── SgixTagSampleBuffer.cs │ │ │ ├── SgixTextureAddEnv.cs │ │ │ ├── SgixTextureCoordinateClamp.cs │ │ │ ├── SgixTextureLodBias.cs │ │ │ ├── SgixTextureMultiBuffer.cs │ │ │ ├── SgixTextureScaleBias.cs │ │ │ ├── SgixVertexPreclip.cs │ │ │ ├── SgixYcrcb.cs │ │ │ ├── SgixYcrcbSubsample.cs │ │ │ ├── SgixYcrcba.cs │ │ │ ├── ShaderParameter.cs │ │ │ ├── ShaderPrecisionType.cs │ │ │ ├── ShaderType.cs │ │ │ ├── ShadingModel.cs │ │ │ ├── SizedInternalFormat.cs │ │ │ ├── StencilFace.cs │ │ │ ├── StencilFunction.cs │ │ │ ├── StencilOp.cs │ │ │ ├── StringName.cs │ │ │ ├── SunConvolutionBorderModes.cs │ │ │ ├── SunGlobalAlpha.cs │ │ │ ├── SunMeshArray.cs │ │ │ ├── SunSliceAccum.cs │ │ │ ├── SunTriangleList.cs │ │ │ ├── SunVertex.cs │ │ │ ├── SunxConstantData.cs │ │ │ ├── SunxGeneralTriangleList.cs │ │ │ ├── TexCoordPointerType.cs │ │ │ ├── TextureBufferTarget.cs │ │ │ ├── TextureCompareMode.cs │ │ │ ├── TextureCoordName.cs │ │ │ ├── TextureEnvMode.cs │ │ │ ├── TextureEnvModeCombine.cs │ │ │ ├── TextureEnvModeOperandAlpha.cs │ │ │ ├── TextureEnvModeOperandRgb.cs │ │ │ ├── TextureEnvModePointSprite.cs │ │ │ ├── TextureEnvModeScale.cs │ │ │ ├── TextureEnvModeSource.cs │ │ │ ├── TextureEnvParameter.cs │ │ │ ├── TextureEnvTarget.cs │ │ │ ├── TextureFilterFuncSgis.cs │ │ │ ├── TextureGenMode.cs │ │ │ ├── TextureGenParameter.cs │ │ │ ├── TextureMagFilter.cs │ │ │ ├── TextureMinFilter.cs │ │ │ ├── TextureParameterName.cs │ │ │ ├── TextureTarget.cs │ │ │ ├── TextureTargetMultisample.cs │ │ │ ├── TextureUnit.cs │ │ │ ├── TextureWrapMode.cs │ │ │ ├── TransformFeedbackMode.cs │ │ │ ├── TransformFeedbackTarget.cs │ │ │ ├── Vector2.cs │ │ │ ├── Vector2d.cs │ │ │ ├── Vector2h.cs │ │ │ ├── Vector3.cs │ │ │ ├── Vector3d.cs │ │ │ ├── Vector3h.cs │ │ │ ├── Vector4.cs │ │ │ ├── Vector4d.cs │ │ │ ├── Vector4h.cs │ │ │ ├── Version11.cs │ │ │ ├── Version11Deprecated.cs │ │ │ ├── Version12.cs │ │ │ ├── Version12Deprecated.cs │ │ │ ├── Version13.cs │ │ │ ├── Version13Deprecated.cs │ │ │ ├── Version14.cs │ │ │ ├── Version14Deprecated.cs │ │ │ ├── Version15.cs │ │ │ ├── Version15Deprecated.cs │ │ │ ├── Version20.cs │ │ │ ├── Version20Deprecated.cs │ │ │ ├── Version21.cs │ │ │ ├── Version21Deprecated.cs │ │ │ ├── Version30.cs │ │ │ ├── Version30Deprecated.cs │ │ │ ├── Version31.cs │ │ │ ├── Version32.cs │ │ │ ├── Version33.cs │ │ │ ├── Version40.cs │ │ │ ├── Version41.cs │ │ │ ├── VertexAttribDPointerType.cs │ │ │ ├── VertexAttribIPointerType.cs │ │ │ ├── VertexAttribParameter.cs │ │ │ ├── VertexAttribParameterArb.cs │ │ │ ├── VertexAttribPointerParameter.cs │ │ │ ├── VertexAttribPointerParameterArb.cs │ │ │ ├── VertexAttribPointerType.cs │ │ │ ├── VertexAttribPointerTypeArb.cs │ │ │ ├── VertexPointerType.cs │ │ │ ├── VivShaderBinary.cs │ │ │ ├── WinPhongShading.cs │ │ │ ├── WinSpecularFog.cs │ │ │ ├── WindowBorder.cs │ │ │ └── WindowState.cs │ │ │ ├── PdfKit │ │ │ ├── ClassForAnnotationClassDelegate.cs │ │ │ ├── PdfAction.cs │ │ │ ├── PdfActionGoTo.cs │ │ │ ├── PdfActionNamed.cs │ │ │ ├── PdfActionNamedName.cs │ │ │ ├── PdfActionRemoteGoTo.cs │ │ │ ├── PdfActionResetForm.cs │ │ │ ├── PdfActionUrl.cs │ │ │ ├── PdfAnnotation.cs │ │ │ ├── PdfAnnotationButtonWidget.cs │ │ │ ├── PdfAnnotationChoiceWidget.cs │ │ │ ├── PdfAnnotationCircle.cs │ │ │ ├── PdfAnnotationFreeText.cs │ │ │ ├── PdfAnnotationInk.cs │ │ │ ├── PdfAnnotationLine.cs │ │ │ ├── PdfAnnotationLink.cs │ │ │ ├── PdfAnnotationMarkup.cs │ │ │ ├── PdfAnnotationPopup.cs │ │ │ ├── PdfAnnotationSquare.cs │ │ │ ├── PdfAnnotationStamp.cs │ │ │ ├── PdfAnnotationText.cs │ │ │ ├── PdfAnnotationTextWidget.cs │ │ │ ├── PdfAreaOfInterest.cs │ │ │ ├── PdfBorder.cs │ │ │ ├── PdfBorderStyle.cs │ │ │ ├── PdfDestination.cs │ │ │ ├── PdfDisplayBox.cs │ │ │ ├── PdfDisplayMode.cs │ │ │ ├── PdfDocument.cs │ │ │ ├── PdfDocumentDelegate.cs │ │ │ ├── PdfDocumentPermissions.cs │ │ │ ├── PdfLineStyle.cs │ │ │ ├── PdfMarkupType.cs │ │ │ ├── PdfOutline.cs │ │ │ ├── PdfPage.cs │ │ │ ├── PdfPrintScalingMode.cs │ │ │ ├── PdfSelection.cs │ │ │ ├── PdfTextAnnotationIconType.cs │ │ │ ├── PdfThumbnailView.cs │ │ │ ├── PdfView.cs │ │ │ ├── PdfViewActionEventArgs.cs │ │ │ ├── PdfViewAnnotationHitEventArgs.cs │ │ │ ├── PdfViewDelegate.cs │ │ │ ├── PdfViewScale.cs │ │ │ ├── PdfViewTitle.cs │ │ │ ├── PdfViewUrlEventArgs.cs │ │ │ └── PdfWidgetControlType.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── QTKit │ │ │ ├── QTCaptureAudioPreviewOutput.cs │ │ │ ├── QTCaptureConnection.cs │ │ │ ├── QTCaptureDecompressedVideoOutput.cs │ │ │ ├── QTCaptureDecompressedVideoOutputDelegate.cs │ │ │ ├── QTCaptureDestination.cs │ │ │ ├── QTCaptureDevice.cs │ │ │ ├── QTCaptureDeviceControlsSpeed.cs │ │ │ ├── QTCaptureDeviceInput.cs │ │ │ ├── QTCaptureDevicePlaybackMode.cs │ │ │ ├── QTCaptureDeviceTransportControl.cs │ │ │ ├── QTCaptureFileError.cs │ │ │ ├── QTCaptureFileErrorEventArgs.cs │ │ │ ├── QTCaptureFileOutput.cs │ │ │ ├── QTCaptureFileOutputDelegate.cs │ │ │ ├── QTCaptureFileSampleEventArgs.cs │ │ │ ├── QTCaptureFileUrlEventArgs.cs │ │ │ ├── QTCaptureImageEvent.cs │ │ │ ├── QTCaptureInput.cs │ │ │ ├── QTCaptureLayer.cs │ │ │ ├── QTCaptureMovieFileOutput.cs │ │ │ ├── QTCaptureOutput.cs │ │ │ ├── QTCaptureSession.cs │ │ │ ├── QTCaptureVideoDroppedEventArgs.cs │ │ │ ├── QTCaptureVideoFrameEventArgs.cs │ │ │ ├── QTCaptureView.cs │ │ │ ├── QTCaptureViewDelegate.cs │ │ │ ├── QTCodecQuality.cs │ │ │ ├── QTCompressionOptions.cs │ │ │ ├── QTDataReference.cs │ │ │ ├── QTError.cs │ │ │ ├── QTFileType.cs │ │ │ ├── QTFormatDescription.cs │ │ │ ├── QTImageAttributes.cs │ │ │ ├── QTMedia.cs │ │ │ ├── QTMediaType.cs │ │ │ ├── QTMovie.cs │ │ │ ├── QTMovieFileTypeOptions.cs │ │ │ ├── QTMovieLayer.cs │ │ │ ├── QTMovieSaveOptions.cs │ │ │ ├── QTMovieView.cs │ │ │ ├── QTMovieViewDelegate.cs │ │ │ ├── QTSampleBuffer.cs │ │ │ ├── QTTime.cs │ │ │ ├── QTTimeRange.cs │ │ │ ├── QTTrack.cs │ │ │ └── TimeFlags.cs │ │ │ ├── QuartzComposer │ │ │ ├── QCComposition.cs │ │ │ ├── QCCompositionLayer.cs │ │ │ └── QCCompositionRepository.cs │ │ │ ├── QuickLook │ │ │ └── QLThumbnailImage.cs │ │ │ ├── Registrar │ │ │ ├── DynamicRegistrar.cs │ │ │ ├── Registrar.cs │ │ │ ├── Shared.cs │ │ │ ├── SharedDynamic.cs │ │ │ └── Trampoline.cs │ │ │ ├── ScriptingBridge │ │ │ ├── AESendMode.cs │ │ │ ├── LSLaunchFlags.cs │ │ │ ├── SBApplication.cs │ │ │ ├── SBApplicationDelegate.cs │ │ │ ├── SBApplicationError.cs │ │ │ └── SBObject.cs │ │ │ ├── Security │ │ │ ├── Authorization.cs │ │ │ ├── AuthorizationEnvironment.cs │ │ │ ├── AuthorizationFlags.cs │ │ │ ├── AuthorizationItem.cs │ │ │ ├── AuthorizationItemSet.cs │ │ │ ├── AuthorizationParameters.cs │ │ │ ├── AuthorizationStatus.cs │ │ │ ├── ClassKeys.cs │ │ │ ├── KeyTypeKeys.cs │ │ │ ├── KeysAccessible.cs │ │ │ ├── KeysAuthenticationType.cs │ │ │ ├── SecAccessible.cs │ │ │ ├── SecAttributeKey.cs │ │ │ ├── SecAuthenticationType.cs │ │ │ ├── SecCertificate.cs │ │ │ ├── SecClass.cs │ │ │ ├── SecIdentity.cs │ │ │ ├── SecItem.cs │ │ │ ├── SecKey.cs │ │ │ ├── SecKeyChain.cs │ │ │ ├── SecKeyClass.cs │ │ │ ├── SecKeyType.cs │ │ │ ├── SecKind.cs │ │ │ ├── SecMatchLimit.cs │ │ │ ├── SecPadding.cs │ │ │ ├── SecPolicy.cs │ │ │ ├── SecProtocol.cs │ │ │ ├── SecProtocolKeys.cs │ │ │ ├── SecRecord.cs │ │ │ ├── SecStatusCode.cs │ │ │ ├── SecTrust.cs │ │ │ ├── SecTrustResult.cs │ │ │ └── SecurityException.cs │ │ │ ├── Trampolines.cs │ │ │ ├── WebKit │ │ │ ├── CreateWebViewFromRequest.cs │ │ │ ├── DomAbstractView.cs │ │ │ ├── DomAttr.cs │ │ │ ├── DomCDataSection.cs │ │ │ ├── DomCharacterData.cs │ │ │ ├── DomComment.cs │ │ │ ├── DomCssRule.cs │ │ │ ├── DomCssRuleList.cs │ │ │ ├── DomCssRuleType.cs │ │ │ ├── DomCssStyleDeclaration.cs │ │ │ ├── DomCssStyleSheet.cs │ │ │ ├── DomCssValue.cs │ │ │ ├── DomCssValueType.cs │ │ │ ├── DomDocument.cs │ │ │ ├── DomDocumentFragment.cs │ │ │ ├── DomDocumentPosition.cs │ │ │ ├── DomDocumentType.cs │ │ │ ├── DomElement.cs │ │ │ ├── DomEntityReference.cs │ │ │ ├── DomEvent.cs │ │ │ ├── DomEventArgs.cs │ │ │ ├── DomEventListener.cs │ │ │ ├── DomEventListenerHandler.cs │ │ │ ├── DomEventPhase.cs │ │ │ ├── DomHtmlCollection.cs │ │ │ ├── DomHtmlDocument.cs │ │ │ ├── DomHtmlElement.cs │ │ │ ├── DomHtmlInputElement.cs │ │ │ ├── DomHtmlTextAreaElement.cs │ │ │ ├── DomImplementation.cs │ │ │ ├── DomMediaList.cs │ │ │ ├── DomNamedNodeMap.cs │ │ │ ├── DomNode.cs │ │ │ ├── DomNodeList.cs │ │ │ ├── DomNodeType.cs │ │ │ ├── DomObject.cs │ │ │ ├── DomProcessingInstruction.cs │ │ │ ├── DomRange.cs │ │ │ ├── DomRangeCompareHow.cs │ │ │ ├── DomStyleSheet.cs │ │ │ ├── DomStyleSheetList.cs │ │ │ ├── DomText.cs │ │ │ ├── DragDestinationGetActionMask.cs │ │ │ ├── DragSourceGetActionMask.cs │ │ │ ├── IIndexedContainer.cs │ │ │ ├── IWKHttpCookieStoreObserver.cs │ │ │ ├── IWKNavigationDelegate.cs │ │ │ ├── IWKScriptMessageHandler.cs │ │ │ ├── IWKUIDelegate.cs │ │ │ ├── IWKUrlSchemeHandler.cs │ │ │ ├── IWKUrlSchemeTask.cs │ │ │ ├── IWebDocumentRepresentation.cs │ │ │ ├── IWebDownloadDelegate.cs │ │ │ ├── IWebFrameLoadDelegate.cs │ │ │ ├── IWebOpenPanelResultListener.cs │ │ │ ├── IWebPolicyDecisionListener.cs │ │ │ ├── IWebPolicyDelegate.cs │ │ │ ├── IWebResourceLoadDelegate.cs │ │ │ ├── IndexedContainerEnumerator.cs │ │ │ ├── NSUrlSessionAuthChallengeDisposition.cs │ │ │ ├── WKAudiovisualMediaTypes.cs │ │ │ ├── WKBackForwardList.cs │ │ │ ├── WKBackForwardListItem.cs │ │ │ ├── WKContentMode.cs │ │ │ ├── WKContentRuleList.cs │ │ │ ├── WKContentRuleListStore.cs │ │ │ ├── WKContentWorld.cs │ │ │ ├── WKErrorCode.cs │ │ │ ├── WKErrorCodeExtensions.cs │ │ │ ├── WKFindConfiguration.cs │ │ │ ├── WKFindResult.cs │ │ │ ├── WKFrameInfo.cs │ │ │ ├── WKFullscreenState.cs │ │ │ ├── WKHttpCookieStore.cs │ │ │ ├── WKHttpCookieStoreObserverWrapper.cs │ │ │ ├── WKHttpCookieStoreObserver_Extensions.cs │ │ │ ├── WKJavascriptEvaluationResult.cs │ │ │ ├── WKMediaCaptureState.cs │ │ │ ├── WKNavigation.cs │ │ │ ├── WKNavigationAction.cs │ │ │ ├── WKNavigationActionPolicy.cs │ │ │ ├── WKNavigationDelegate.cs │ │ │ ├── WKNavigationDelegateWrapper.cs │ │ │ ├── WKNavigationDelegate_Extensions.cs │ │ │ ├── WKNavigationResponse.cs │ │ │ ├── WKNavigationResponsePolicy.cs │ │ │ ├── WKNavigationType.cs │ │ │ ├── WKOpenPanelParameters.cs │ │ │ ├── WKPreferences.cs │ │ │ ├── WKProcessPool.cs │ │ │ ├── WKScriptMessage.cs │ │ │ ├── WKScriptMessageHandler.cs │ │ │ ├── WKScriptMessageHandlerWrapper.cs │ │ │ ├── WKSecurityOrigin.cs │ │ │ ├── WKSelectionGranularity.cs │ │ │ ├── WKSnapshotConfiguration.cs │ │ │ ├── WKUIDelegate.cs │ │ │ ├── WKUIDelegateWrapper.cs │ │ │ ├── WKUIDelegate_Extensions.cs │ │ │ ├── WKUrlSchemeHandlerWrapper.cs │ │ │ ├── WKUrlSchemeTaskWrapper.cs │ │ │ ├── WKUserContentController.cs │ │ │ ├── WKUserScript.cs │ │ │ ├── WKUserScriptInjectionTime.cs │ │ │ ├── WKWebView.cs │ │ │ ├── WKWebViewConfiguration.cs │ │ │ ├── WKWebpagePreferences.cs │ │ │ ├── WKWebsiteDataRecord.cs │ │ │ ├── WKWebsiteDataStore.cs │ │ │ ├── WKWebsiteDataType.cs │ │ │ ├── WKWindowFeatures.cs │ │ │ ├── WebArchive.cs │ │ │ ├── WebBackForwardList.cs │ │ │ ├── WebCacheModel.cs │ │ │ ├── WebDataSource.cs │ │ │ ├── WebDocumentRepresentation.cs │ │ │ ├── WebDocumentRepresentationWrapper.cs │ │ │ ├── WebDownload.cs │ │ │ ├── WebDownloadDelegate.cs │ │ │ ├── WebDownloadDelegateWrapper.cs │ │ │ ├── WebDownloadRequest.cs │ │ │ ├── WebDragDestinationAction.cs │ │ │ ├── WebDragSourceAction.cs │ │ │ ├── WebFailureToImplementPolicyEventArgs.cs │ │ │ ├── WebFrame.cs │ │ │ ├── WebFrameClientRedirectEventArgs.cs │ │ │ ├── WebFrameErrorEventArgs.cs │ │ │ ├── WebFrameEventArgs.cs │ │ │ ├── WebFrameImageEventArgs.cs │ │ │ ├── WebFrameLoadDelegate.cs │ │ │ ├── WebFrameLoadDelegateWrapper.cs │ │ │ ├── WebFrameScriptFrameEventArgs.cs │ │ │ ├── WebFrameScriptObjectEventArgs.cs │ │ │ ├── WebFrameTitleEventArgs.cs │ │ │ ├── WebFrameView.cs │ │ │ ├── WebHistoryItem.cs │ │ │ ├── WebMimeTypePolicyEventArgs.cs │ │ │ ├── WebNavigationPolicyEventArgs.cs │ │ │ ├── WebNavigationType.cs │ │ │ ├── WebNewWindowPolicyEventArgs.cs │ │ │ ├── WebOpenPanelResultListener.cs │ │ │ ├── WebOpenPanelResultListenerWrapper.cs │ │ │ ├── WebOpenPanelResultListener_Extensions.cs │ │ │ ├── WebPolicyDecisionListener.cs │ │ │ ├── WebPolicyDecisionListenerWrapper.cs │ │ │ ├── WebPolicyDelegate.cs │ │ │ ├── WebPolicyDelegateWrapper.cs │ │ │ ├── WebPolicyDelegate_Extensions.cs │ │ │ ├── WebPreferences.cs │ │ │ ├── WebResource.cs │ │ │ ├── WebResourceAuthenticationChallengeEventArgs.cs │ │ │ ├── WebResourceCancelledChallengeEventArgs.cs │ │ │ ├── WebResourceCompletedEventArgs.cs │ │ │ ├── WebResourceErrorEventArgs.cs │ │ │ ├── WebResourceIdentifierRequest.cs │ │ │ ├── WebResourceLoadDelegate.cs │ │ │ ├── WebResourceLoadDelegateWrapper.cs │ │ │ ├── WebResourceOnRequestSend.cs │ │ │ ├── WebResourcePluginErrorEventArgs.cs │ │ │ ├── WebResourceReceivedContentLengthEventArgs.cs │ │ │ ├── WebResourceReceivedResponseEventArgs.cs │ │ │ ├── WebScriptObject.cs │ │ │ ├── WebUIDelegate.cs │ │ │ ├── WebView.cs │ │ │ ├── WebViewConfirmationPanel.cs │ │ │ ├── WebViewContentEventArgs.cs │ │ │ ├── WebViewCreate.cs │ │ │ ├── WebViewDragEventArgs.cs │ │ │ ├── WebViewFooterEventArgs.cs │ │ │ ├── WebViewFrameEventArgs.cs │ │ │ ├── WebViewGetBool.cs │ │ │ ├── WebViewGetContextMenuItems.cs │ │ │ ├── WebViewGetFloat.cs │ │ │ ├── WebViewGetRectangle.cs │ │ │ ├── WebViewGetResponder.cs │ │ │ ├── WebViewGetString.cs │ │ │ ├── WebViewHeaderEventArgs.cs │ │ │ ├── WebViewJavaScriptEventArgs.cs │ │ │ ├── WebViewJavaScriptFrame.cs │ │ │ ├── WebViewJavaScriptFrameEventArgs.cs │ │ │ ├── WebViewJavaScriptInput.cs │ │ │ ├── WebViewMouseMovedEventArgs.cs │ │ │ ├── WebViewPerformAction.cs │ │ │ ├── WebViewPerformDragEventArgs.cs │ │ │ ├── WebViewPrintEventArgs.cs │ │ │ ├── WebViewPrompt.cs │ │ │ ├── WebViewPromptPanel.cs │ │ │ ├── WebViewResizableEventArgs.cs │ │ │ ├── WebViewResponderEventArgs.cs │ │ │ ├── WebViewRunOpenPanelEventArgs.cs │ │ │ ├── WebViewStatusBarEventArgs.cs │ │ │ ├── WebViewStatusTextEventArgs.cs │ │ │ ├── WebViewToolBarsEventArgs.cs │ │ │ └── WebViewValidateUserInterface.cs │ │ │ ├── Xamarin.Mac.csproj │ │ │ ├── Xamarin.System │ │ │ └── nfloat.cs │ │ │ └── Xamarin.Utiles │ │ │ ├── ActionAttribute.cs │ │ │ ├── AdoptsAttribute.cs │ │ │ ├── AlphaAttribute.cs │ │ │ ├── AvailabilityBaseAttribute.cs │ │ │ ├── AvailabilityKind.cs │ │ │ ├── BindAsAttribute.cs │ │ │ ├── BlockProxyAttribute.cs │ │ │ ├── CategoryAttribute.cs │ │ │ ├── DelegateProxyAttribute.cs │ │ │ ├── ElCapitanAttribute.cs │ │ │ ├── ErrorHelper.cs │ │ │ ├── IntPtrEqualityComparer.cs │ │ │ ├── LinkerSafeAttribute.cs │ │ │ ├── LogHelper.cs │ │ │ ├── MavericksAttribute.cs │ │ │ ├── MonoNativeFunctionWrapperAttribute.cs │ │ │ ├── MonoPInvokeCallbackAttribute.cs │ │ │ ├── NativeAttribute.cs │ │ │ ├── OutletAttribute.cs │ │ │ ├── Platform.cs │ │ │ ├── PlatformArchitecture.cs │ │ │ ├── PlatformHelper.cs │ │ │ ├── PlatformName.cs │ │ │ ├── ReleaseAttribute.cs │ │ │ ├── RequiredFrameworkAttribute.cs │ │ │ ├── RuntimeException.cs │ │ │ ├── Stret.cs │ │ │ ├── StringUtils.cs │ │ │ ├── ThrowHelper.cs │ │ │ ├── TransientAttribute.cs │ │ │ ├── TypeEqualityComparer.cs │ │ │ └── YosemiteAttribute.cs │ ├── Windows │ │ ├── Avalonia.WebView.Windows │ │ │ ├── AppBuilderExtensions.cs │ │ │ ├── Avalonia.WebView.Windows.csproj │ │ │ ├── BlazorWebViewHandlerProvider.cs │ │ │ ├── Core │ │ │ │ ├── WebView2Core-assist.cs │ │ │ │ ├── WebView2Core-core.cs │ │ │ │ ├── WebView2Core-event.cs │ │ │ │ ├── WebView2Core-override.cs │ │ │ │ └── WebView2Core.cs │ │ │ ├── Helpers │ │ │ │ └── BlazorScriptHelper.cs │ │ │ ├── Properties │ │ │ │ └── _globalusing.cs │ │ │ ├── ViewHandlerProvider.cs │ │ │ └── WebViewHandler.cs │ │ ├── Microsoft.AspNetCore.Components.WebView.Wpf │ │ │ ├── AutoCloseOnReadCompleteStream.cs │ │ │ ├── BlazorWebView.cs │ │ │ ├── BlazorWebViewDeveloperTools.cs │ │ │ ├── BlazorWebViewInitializedEventArgs.cs │ │ │ ├── BlazorWebViewInitializingEventArgs.cs │ │ │ ├── BlazorWebViewServiceCollectionExtensions.cs │ │ │ ├── IWpfBlazorWebViewBuilder.cs │ │ │ ├── Microsoft.AspNetCore.Components.WebView.Wpf.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── QueryStringHelper.cs │ │ │ ├── RootComponent.cs │ │ │ ├── RootComponentsCollection.cs │ │ │ ├── StaticContentHotReloadManager.cs │ │ │ ├── UrlLoadingEventArgs.cs │ │ │ ├── UrlLoadingStrategy.cs │ │ │ ├── WebView2WebViewManager.cs │ │ │ ├── WpfBlazorMarkerService.cs │ │ │ ├── WpfBlazorWebViewBuilder.cs │ │ │ └── WpfDispatcher.cs │ │ ├── Microsoft.Web.WebView2.Core │ │ │ ├── COMDotNetTypeConverter.cs │ │ │ ├── COMStreamWrapper.cs │ │ │ ├── CoreWebView2.cs │ │ │ ├── CoreWebView2AcceleratorKeyPressedEventArgs.cs │ │ │ ├── CoreWebView2AcceleratorKeyPressedEventHandler.cs │ │ │ ├── CoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler.cs │ │ │ ├── CoreWebView2BasicAuthenticationRequestedEventArgs.cs │ │ │ ├── CoreWebView2BasicAuthenticationRequestedEventHandler.cs │ │ │ ├── CoreWebView2BasicAuthenticationResponse.cs │ │ │ ├── CoreWebView2BoundsMode.cs │ │ │ ├── CoreWebView2BrowserProcessExitKind.cs │ │ │ ├── CoreWebView2BrowserProcessExitedEventArgs.cs │ │ │ ├── CoreWebView2BrowserProcessExitedEventHandler.cs │ │ │ ├── CoreWebView2BrowsingDataKinds.cs │ │ │ ├── CoreWebView2BytesReceivedChangedEventHandler.cs │ │ │ ├── CoreWebView2CallDevToolsProtocolMethodCompletedHandler.cs │ │ │ ├── CoreWebView2CapturePreviewCompletedHandler.cs │ │ │ ├── CoreWebView2CapturePreviewImageFormat.cs │ │ │ ├── CoreWebView2Certificate.cs │ │ │ ├── CoreWebView2ClearBrowsingDataCompletedHandler.cs │ │ │ ├── CoreWebView2ClearCustomDataPartitionCompletedHandler.cs │ │ │ ├── CoreWebView2ClearServerCertificateErrorActionsCompletedHandler.cs │ │ │ ├── CoreWebView2ClientCertificate.cs │ │ │ ├── CoreWebView2ClientCertificateKind.cs │ │ │ ├── CoreWebView2ClientCertificateRequestedEventArgs.cs │ │ │ ├── CoreWebView2ClientCertificateRequestedEventHandler.cs │ │ │ ├── CoreWebView2Color.cs │ │ │ ├── CoreWebView2CompositionController.cs │ │ │ ├── CoreWebView2ContainsFullScreenElementChangedEventHandler.cs │ │ │ ├── CoreWebView2ContentLoadingEventArgs.cs │ │ │ ├── CoreWebView2ContentLoadingEventHandler.cs │ │ │ ├── CoreWebView2ContextMenuItem.cs │ │ │ ├── CoreWebView2ContextMenuItemKind.cs │ │ │ ├── CoreWebView2ContextMenuRequestedEventArgs.cs │ │ │ ├── CoreWebView2ContextMenuRequestedEventHandler.cs │ │ │ ├── CoreWebView2ContextMenuTarget.cs │ │ │ ├── CoreWebView2ContextMenuTargetKind.cs │ │ │ ├── CoreWebView2Controller.cs │ │ │ ├── CoreWebView2ControllerOptions.cs │ │ │ ├── CoreWebView2Cookie.cs │ │ │ ├── CoreWebView2CookieManager.cs │ │ │ ├── CoreWebView2CookieSameSiteKind.cs │ │ │ ├── CoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler.cs │ │ │ ├── CoreWebView2CreateCoreWebView2ControllerCompletedHandler.cs │ │ │ ├── CoreWebView2CreateCoreWebView2EnvironmentCompletedHandler.cs │ │ │ ├── CoreWebView2CursorChangedEventHandler.cs │ │ │ ├── CoreWebView2CustomItemSelectedEventHandler.cs │ │ │ ├── CoreWebView2CustomSchemeRegistration.cs │ │ │ ├── CoreWebView2DOMContentLoadedEventArgs.cs │ │ │ ├── CoreWebView2DOMContentLoadedEventHandler.cs │ │ │ ├── CoreWebView2DefaultDownloadDialogCornerAlignment.cs │ │ │ ├── CoreWebView2Deferral.cs │ │ │ ├── CoreWebView2DevToolsProtocolEventReceivedEventArgs.cs │ │ │ ├── CoreWebView2DevToolsProtocolEventReceivedEventHandler.cs │ │ │ ├── CoreWebView2DevToolsProtocolEventReceiver.cs │ │ │ ├── CoreWebView2DocumentTitleChangedEventHandler.cs │ │ │ ├── CoreWebView2DownloadInterruptReason.cs │ │ │ ├── CoreWebView2DownloadOperation.cs │ │ │ ├── CoreWebView2DownloadStartingEventArgs.cs │ │ │ ├── CoreWebView2DownloadStartingEventHandler.cs │ │ │ ├── CoreWebView2DownloadState.cs │ │ │ ├── CoreWebView2Environment.cs │ │ │ ├── CoreWebView2EnvironmentOptions.cs │ │ │ ├── CoreWebView2EstimatedEndTimeChangedEventHandler.cs │ │ │ ├── CoreWebView2ExecuteScriptCompletedHandler.cs │ │ │ ├── CoreWebView2ExecuteScriptResult.cs │ │ │ ├── CoreWebView2ExecuteScriptWithResultCompletedHandler.cs │ │ │ ├── CoreWebView2ExperimentalLaunchingExternalUriSchemeEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalProfileDeletedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalRasterizationScaleChangedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalRenderAdapterLUIDChangedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalTextureStreamErrorReceivedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalTextureStreamStartRequestedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalTextureStreamStoppedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalTextureStreamWebTextureReceivedEventHandler.cs │ │ │ ├── CoreWebView2ExperimentalTextureStreamWebTextureStreamStoppedEventHandler.cs │ │ │ ├── CoreWebView2FaviconChangedEventHandler.cs │ │ │ ├── CoreWebView2FaviconImageFormat.cs │ │ │ ├── CoreWebView2File.cs │ │ │ ├── CoreWebView2FocusChangedEventHandler.cs │ │ │ ├── CoreWebView2Frame.cs │ │ │ ├── CoreWebView2FrameContentLoadingEventHandler.cs │ │ │ ├── CoreWebView2FrameCreatedEventArgs.cs │ │ │ ├── CoreWebView2FrameCreatedEventHandler.cs │ │ │ ├── CoreWebView2FrameDOMContentLoadedEventHandler.cs │ │ │ ├── CoreWebView2FrameDestroyedEventHandler.cs │ │ │ ├── CoreWebView2FrameInfo.cs │ │ │ ├── CoreWebView2FrameNameChangedEventHandler.cs │ │ │ ├── CoreWebView2FrameNavigationCompletedEventHandler.cs │ │ │ ├── CoreWebView2FrameNavigationStartingEventHandler.cs │ │ │ ├── CoreWebView2FramePermissionRequestedEventHandler.cs │ │ │ ├── CoreWebView2FrameWebMessageReceivedEventHandler.cs │ │ │ ├── CoreWebView2GetCookiesCompletedHandler.cs │ │ │ ├── CoreWebView2GetFaviconCompletedHandler.cs │ │ │ ├── CoreWebView2GetNonDefaultPermissionSettingsCompletedHandler.cs │ │ │ ├── CoreWebView2HistoryChangedEventHandler.cs │ │ │ ├── CoreWebView2HostResourceAccessKind.cs │ │ │ ├── CoreWebView2HttpHeadersCollectionIterator.cs │ │ │ ├── CoreWebView2HttpRequestHeaders.cs │ │ │ ├── CoreWebView2HttpResponseHeaders.cs │ │ │ ├── CoreWebView2InitializationCompletedEventArgs.cs │ │ │ ├── CoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler.cs │ │ │ ├── CoreWebView2IsDocumentPlayingAudioChangedEventHandler.cs │ │ │ ├── CoreWebView2IsMutedChangedEventHandler.cs │ │ │ ├── CoreWebView2KeyEventKind.cs │ │ │ ├── CoreWebView2LaunchingExternalUriSchemeEventArgs.cs │ │ │ ├── CoreWebView2Matrix4x4.cs │ │ │ ├── CoreWebView2MemoryUsageTargetLevel.cs │ │ │ ├── CoreWebView2MouseEventKind.cs │ │ │ ├── CoreWebView2MouseEventVirtualKeys.cs │ │ │ ├── CoreWebView2MoveFocusReason.cs │ │ │ ├── CoreWebView2MoveFocusRequestedEventArgs.cs │ │ │ ├── CoreWebView2MoveFocusRequestedEventHandler.cs │ │ │ ├── CoreWebView2NavigationCompletedEventArgs.cs │ │ │ ├── CoreWebView2NavigationCompletedEventHandler.cs │ │ │ ├── CoreWebView2NavigationKind.cs │ │ │ ├── CoreWebView2NavigationStartingEventArgs.cs │ │ │ ├── CoreWebView2NavigationStartingEventHandler.cs │ │ │ ├── CoreWebView2NewBrowserVersionAvailableEventHandler.cs │ │ │ ├── CoreWebView2NewWindowRequestedEventArgs.cs │ │ │ ├── CoreWebView2NewWindowRequestedEventHandler.cs │ │ │ ├── CoreWebView2PdfToolbarItems.cs │ │ │ ├── CoreWebView2PermissionKind.cs │ │ │ ├── CoreWebView2PermissionRequestedEventArgs.cs │ │ │ ├── CoreWebView2PermissionRequestedEventHandler.cs │ │ │ ├── CoreWebView2PermissionSetting.cs │ │ │ ├── CoreWebView2PermissionState.cs │ │ │ ├── CoreWebView2PhysicalKeyStatus.cs │ │ │ ├── CoreWebView2PointerEventKind.cs │ │ │ ├── CoreWebView2PointerInfo.cs │ │ │ ├── CoreWebView2PreferredColorScheme.cs │ │ │ ├── CoreWebView2PrintCollation.cs │ │ │ ├── CoreWebView2PrintColorMode.cs │ │ │ ├── CoreWebView2PrintCompletedHandler.cs │ │ │ ├── CoreWebView2PrintDialogKind.cs │ │ │ ├── CoreWebView2PrintDuplex.cs │ │ │ ├── CoreWebView2PrintMediaSize.cs │ │ │ ├── CoreWebView2PrintOrientation.cs │ │ │ ├── CoreWebView2PrintSettings.cs │ │ │ ├── CoreWebView2PrintStatus.cs │ │ │ ├── CoreWebView2PrintToPdfCompletedHandler.cs │ │ │ ├── CoreWebView2PrintToPdfStreamCompletedHandler.cs │ │ │ ├── CoreWebView2PrivateContextMenuItem.cs │ │ │ ├── CoreWebView2PrivateEnvironmentTesting.cs │ │ │ ├── CoreWebView2PrivateHostObjectAsyncMethodContinuation.cs │ │ │ ├── CoreWebView2PrivateHostObjectHelper.cs │ │ │ ├── CoreWebView2PrivateKeyPressedEventArgs.cs │ │ │ ├── CoreWebView2PrivateKeyPressedEventHandler.cs │ │ │ ├── CoreWebView2PrivateRemoteObjectProxy.cs │ │ │ ├── CoreWebView2ProcessFailedEventArgs.cs │ │ │ ├── CoreWebView2ProcessFailedEventHandler.cs │ │ │ ├── CoreWebView2ProcessFailedKind.cs │ │ │ ├── CoreWebView2ProcessFailedReason.cs │ │ │ ├── CoreWebView2ProcessInfo.cs │ │ │ ├── CoreWebView2ProcessInfosChangedEventHandler.cs │ │ │ ├── CoreWebView2ProcessKind.cs │ │ │ ├── CoreWebView2Profile.cs │ │ │ ├── CoreWebView2RasterizationScaleChangedEventHandler.cs │ │ │ ├── CoreWebView2ScriptDialogKind.cs │ │ │ ├── CoreWebView2ScriptDialogOpeningEventArgs.cs │ │ │ ├── CoreWebView2ScriptDialogOpeningEventHandler.cs │ │ │ ├── CoreWebView2ScriptException.cs │ │ │ ├── CoreWebView2ServerCertificateErrorAction.cs │ │ │ ├── CoreWebView2ServerCertificateErrorDetectedEventArgs.cs │ │ │ ├── CoreWebView2ServerCertificateErrorDetectedEventHandler.cs │ │ │ ├── CoreWebView2SetPermissionStateCompletedHandler.cs │ │ │ ├── CoreWebView2Settings.cs │ │ │ ├── CoreWebView2SharedBuffer.cs │ │ │ ├── CoreWebView2SharedBufferAccess.cs │ │ │ ├── CoreWebView2SourceChangedEventArgs.cs │ │ │ ├── CoreWebView2SourceChangedEventHandler.cs │ │ │ ├── CoreWebView2StateChangedEventHandler.cs │ │ │ ├── CoreWebView2StatusBarTextChangedEventHandler.cs │ │ │ ├── CoreWebView2Texture.cs │ │ │ ├── CoreWebView2TextureStream.cs │ │ │ ├── CoreWebView2TextureStreamErrorKind.cs │ │ │ ├── CoreWebView2TextureStreamErrorReceivedEventArgs.cs │ │ │ ├── CoreWebView2TextureStreamWebTextureReceivedEventArgs.cs │ │ │ ├── CoreWebView2TrackingPreventionLevel.cs │ │ │ ├── CoreWebView2TrySuspendCompletedHandler.cs │ │ │ ├── CoreWebView2UpdateRuntimeCompletedHandler.cs │ │ │ ├── CoreWebView2UpdateRuntimeResult.cs │ │ │ ├── CoreWebView2UpdateRuntimeStatus.cs │ │ │ ├── CoreWebView2WebErrorStatus.cs │ │ │ ├── CoreWebView2WebMessageReceivedEventArgs.cs │ │ │ ├── CoreWebView2WebMessageReceivedEventHandler.cs │ │ │ ├── CoreWebView2WebResourceContext.cs │ │ │ ├── CoreWebView2WebResourceRequest.cs │ │ │ ├── CoreWebView2WebResourceRequestSourceKinds.cs │ │ │ ├── CoreWebView2WebResourceRequestedEventArgs.cs │ │ │ ├── CoreWebView2WebResourceRequestedEventHandler.cs │ │ │ ├── CoreWebView2WebResourceResponse.cs │ │ │ ├── CoreWebView2WebResourceResponseReceivedEventArgs.cs │ │ │ ├── CoreWebView2WebResourceResponseReceivedEventHandler.cs │ │ │ ├── CoreWebView2WebResourceResponseView.cs │ │ │ ├── CoreWebView2WebResourceResponseViewGetContentCompletedHandler.cs │ │ │ ├── CoreWebView2WebTexture.cs │ │ │ ├── CoreWebView2WindowCloseRequestedEventHandler.cs │ │ │ ├── CoreWebView2WindowFeatures.cs │ │ │ ├── CoreWebView2ZoomFactorChangedEventHandler.cs │ │ │ ├── Dispatchcontainerscriptbehavior.cs │ │ │ ├── HostObjectHelper.cs │ │ │ ├── ManagedIStream.cs │ │ │ ├── Microsoft.Web.WebView2.Core.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── _globalusing.cs │ │ │ ├── Raw │ │ │ │ ├── BrowserInfo.cs │ │ │ │ ├── COREWEBVIEW2_BOUNDS_MODE.cs │ │ │ │ ├── COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND.cs │ │ │ │ ├── COREWEBVIEW2_BROWSING_DATA_KINDS.cs │ │ │ │ ├── COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT.cs │ │ │ │ ├── COREWEBVIEW2_CLIENT_CERTIFICATE_KIND.cs │ │ │ │ ├── COREWEBVIEW2_COLOR.cs │ │ │ │ ├── COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND.cs │ │ │ │ ├── COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND.cs │ │ │ │ ├── COREWEBVIEW2_COOKIE_SAME_SITE_KIND.cs │ │ │ │ ├── COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT.cs │ │ │ │ ├── COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON.cs │ │ │ │ ├── COREWEBVIEW2_DOWNLOAD_STATE.cs │ │ │ │ ├── COREWEBVIEW2_FAVICON_IMAGE_FORMAT.cs │ │ │ │ ├── COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND.cs │ │ │ │ ├── COREWEBVIEW2_KEY_EVENT_KIND.cs │ │ │ │ ├── COREWEBVIEW2_MATRIX_4X4.cs │ │ │ │ ├── COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL.cs │ │ │ │ ├── COREWEBVIEW2_MOUSE_EVENT_KIND.cs │ │ │ │ ├── COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS.cs │ │ │ │ ├── COREWEBVIEW2_MOVE_FOCUS_REASON.cs │ │ │ │ ├── COREWEBVIEW2_NAVIGATION_KIND.cs │ │ │ │ ├── COREWEBVIEW2_PDF_TOOLBAR_ITEMS.cs │ │ │ │ ├── COREWEBVIEW2_PERMISSION_KIND.cs │ │ │ │ ├── COREWEBVIEW2_PERMISSION_STATE.cs │ │ │ │ ├── COREWEBVIEW2_PHYSICAL_KEY_STATUS.cs │ │ │ │ ├── COREWEBVIEW2_POINTER_EVENT_KIND.cs │ │ │ │ ├── COREWEBVIEW2_PREFERRED_COLOR_SCHEME.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_COLLATION.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_COLOR_MODE.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_DIALOG_KIND.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_DUPLEX.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_MEDIA_SIZE.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_ORIENTATION.cs │ │ │ │ ├── COREWEBVIEW2_PRINT_STATUS.cs │ │ │ │ ├── COREWEBVIEW2_PROCESS_FAILED_KIND.cs │ │ │ │ ├── COREWEBVIEW2_PROCESS_FAILED_REASON.cs │ │ │ │ ├── COREWEBVIEW2_PROCESS_KIND.cs │ │ │ │ ├── COREWEBVIEW2_SCRIPT_DIALOG_KIND.cs │ │ │ │ ├── COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION.cs │ │ │ │ ├── COREWEBVIEW2_SHARED_BUFFER_ACCESS.cs │ │ │ │ ├── COREWEBVIEW2_TEXTURE_STREAM_ERROR_KIND.cs │ │ │ │ ├── COREWEBVIEW2_TRACKING_PREVENTION_LEVEL.cs │ │ │ │ ├── COREWEBVIEW2_UPDATE_RUNTIME_STATUS.cs │ │ │ │ ├── COREWEBVIEW2_WEB_ERROR_STATUS.cs │ │ │ │ ├── COREWEBVIEW2_WEB_RESOURCE_CONTEXT.cs │ │ │ │ ├── COREWEBVIEW2_WEB_RESOURCE_REQUEST_SOURCE_KINDS.cs │ │ │ │ ├── EventRegistrationToken.cs │ │ │ │ ├── ICoreWebView2.cs │ │ │ │ ├── ICoreWebView2AcceleratorKeyPressedEventArgs.cs │ │ │ │ ├── ICoreWebView2AcceleratorKeyPressedEventHandler.cs │ │ │ │ ├── ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler.cs │ │ │ │ ├── ICoreWebView2BasicAuthenticationRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2BasicAuthenticationRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2BasicAuthenticationResponse.cs │ │ │ │ ├── ICoreWebView2BrowserProcessExitedEventArgs.cs │ │ │ │ ├── ICoreWebView2BrowserProcessExitedEventHandler.cs │ │ │ │ ├── ICoreWebView2BytesReceivedChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2CallDevToolsProtocolMethodCompletedHandler.cs │ │ │ │ ├── ICoreWebView2CapturePreviewCompletedHandler.cs │ │ │ │ ├── ICoreWebView2Certificate.cs │ │ │ │ ├── ICoreWebView2ClearBrowsingDataCompletedHandler.cs │ │ │ │ ├── ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler.cs │ │ │ │ ├── ICoreWebView2ClientCertificate.cs │ │ │ │ ├── ICoreWebView2ClientCertificateCollection.cs │ │ │ │ ├── ICoreWebView2ClientCertificateRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2ClientCertificateRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2CompositionController.cs │ │ │ │ ├── ICoreWebView2CompositionController2.cs │ │ │ │ ├── ICoreWebView2CompositionController3.cs │ │ │ │ ├── ICoreWebView2ContainsFullScreenElementChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2ContentLoadingEventArgs.cs │ │ │ │ ├── ICoreWebView2ContentLoadingEventHandler.cs │ │ │ │ ├── ICoreWebView2ContextMenuItem.cs │ │ │ │ ├── ICoreWebView2ContextMenuItemCollection.cs │ │ │ │ ├── ICoreWebView2ContextMenuRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2ContextMenuRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2ContextMenuTarget.cs │ │ │ │ ├── ICoreWebView2Controller.cs │ │ │ │ ├── ICoreWebView2Controller2.cs │ │ │ │ ├── ICoreWebView2Controller3.cs │ │ │ │ ├── ICoreWebView2Controller4.cs │ │ │ │ ├── ICoreWebView2ControllerOptions.cs │ │ │ │ ├── ICoreWebView2ControllerOptions2.cs │ │ │ │ ├── ICoreWebView2Cookie.cs │ │ │ │ ├── ICoreWebView2CookieList.cs │ │ │ │ ├── ICoreWebView2CookieManager.cs │ │ │ │ ├── ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler.cs │ │ │ │ ├── ICoreWebView2CreateCoreWebView2ControllerCompletedHandler.cs │ │ │ │ ├── ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler.cs │ │ │ │ ├── ICoreWebView2CursorChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2CustomItemSelectedEventHandler.cs │ │ │ │ ├── ICoreWebView2CustomSchemeRegistration.cs │ │ │ │ ├── ICoreWebView2DOMContentLoadedEventArgs.cs │ │ │ │ ├── ICoreWebView2DOMContentLoadedEventHandler.cs │ │ │ │ ├── ICoreWebView2Deferral.cs │ │ │ │ ├── ICoreWebView2DevToolsProtocolEventReceivedEventArgs.cs │ │ │ │ ├── ICoreWebView2DevToolsProtocolEventReceivedEventArgs2.cs │ │ │ │ ├── ICoreWebView2DevToolsProtocolEventReceivedEventHandler.cs │ │ │ │ ├── ICoreWebView2DevToolsProtocolEventReceiver.cs │ │ │ │ ├── ICoreWebView2DocumentTitleChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2DownloadOperation.cs │ │ │ │ ├── ICoreWebView2DownloadStartingEventArgs.cs │ │ │ │ ├── ICoreWebView2DownloadStartingEventHandler.cs │ │ │ │ ├── ICoreWebView2Environment.cs │ │ │ │ ├── ICoreWebView2Environment10.cs │ │ │ │ ├── ICoreWebView2Environment11.cs │ │ │ │ ├── ICoreWebView2Environment12.cs │ │ │ │ ├── ICoreWebView2Environment2.cs │ │ │ │ ├── ICoreWebView2Environment3.cs │ │ │ │ ├── ICoreWebView2Environment4.cs │ │ │ │ ├── ICoreWebView2Environment5.cs │ │ │ │ ├── ICoreWebView2Environment6.cs │ │ │ │ ├── ICoreWebView2Environment7.cs │ │ │ │ ├── ICoreWebView2Environment8.cs │ │ │ │ ├── ICoreWebView2Environment9.cs │ │ │ │ ├── ICoreWebView2EnvironmentOptions.cs │ │ │ │ ├── ICoreWebView2EnvironmentOptions2.cs │ │ │ │ ├── ICoreWebView2EnvironmentOptions3.cs │ │ │ │ ├── ICoreWebView2EnvironmentOptions4.cs │ │ │ │ ├── ICoreWebView2EnvironmentOptions5.cs │ │ │ │ ├── ICoreWebView2EstimatedEndTimeChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExecuteScriptCompletedHandler.cs │ │ │ │ ├── ICoreWebView2Experimental.cs │ │ │ │ ├── ICoreWebView2Experimental10.cs │ │ │ │ ├── ICoreWebView2Experimental11.cs │ │ │ │ ├── ICoreWebView2Experimental12.cs │ │ │ │ ├── ICoreWebView2Experimental13.cs │ │ │ │ ├── ICoreWebView2Experimental14.cs │ │ │ │ ├── ICoreWebView2Experimental15.cs │ │ │ │ ├── ICoreWebView2Experimental16.cs │ │ │ │ ├── ICoreWebView2Experimental17.cs │ │ │ │ ├── ICoreWebView2Experimental18.cs │ │ │ │ ├── ICoreWebView2Experimental19.cs │ │ │ │ ├── ICoreWebView2Experimental2.cs │ │ │ │ ├── ICoreWebView2Experimental20.cs │ │ │ │ ├── ICoreWebView2Experimental21.cs │ │ │ │ ├── ICoreWebView2Experimental3.cs │ │ │ │ ├── ICoreWebView2Experimental4.cs │ │ │ │ ├── ICoreWebView2Experimental5.cs │ │ │ │ ├── ICoreWebView2Experimental6.cs │ │ │ │ ├── ICoreWebView2Experimental7.cs │ │ │ │ ├── ICoreWebView2Experimental8.cs │ │ │ │ ├── ICoreWebView2Experimental9.cs │ │ │ │ ├── ICoreWebView2ExperimentalClearCustomDataPartitionCompletedHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalCompositionController3.cs │ │ │ │ ├── ICoreWebView2ExperimentalCompositionController4.cs │ │ │ │ ├── ICoreWebView2ExperimentalController.cs │ │ │ │ ├── ICoreWebView2ExperimentalController2.cs │ │ │ │ ├── ICoreWebView2ExperimentalControllerOptions.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment10.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment12.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment2.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment3.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment4.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment5.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment6.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment7.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment8.cs │ │ │ │ ├── ICoreWebView2ExperimentalEnvironment9.cs │ │ │ │ ├── ICoreWebView2ExperimentalExecuteScriptResult.cs │ │ │ │ ├── ICoreWebView2ExperimentalExecuteScriptWithResultCompletedHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalFrame.cs │ │ │ │ ├── ICoreWebView2ExperimentalFrame2.cs │ │ │ │ ├── ICoreWebView2ExperimentalFrame3.cs │ │ │ │ ├── ICoreWebView2ExperimentalFrame4.cs │ │ │ │ ├── ICoreWebView2ExperimentalLaunchingExternalUriSchemeEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalLaunchingExternalUriSchemeEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalNavigationStartingEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalNavigationStartingEventArgs2.cs │ │ │ │ ├── ICoreWebView2ExperimentalNewWindowRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalPrintSettings2.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile10.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile11.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile2.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile3.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile4.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile5.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile6.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile7.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfile8.cs │ │ │ │ ├── ICoreWebView2ExperimentalProfileDeletedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalRasterizationScaleChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalRenderAdapterLUIDChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalScriptException.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings2.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings3.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings4.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings5.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings6.cs │ │ │ │ ├── ICoreWebView2ExperimentalSettings7.cs │ │ │ │ ├── ICoreWebView2ExperimentalTexture.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStream.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamErrorReceivedEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamErrorReceivedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamStartRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamStoppedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamWebTextureReceivedEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamWebTextureReceivedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalTextureStreamWebTextureStreamStoppedEventHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalUpdateRuntimeCompletedHandler.cs │ │ │ │ ├── ICoreWebView2ExperimentalUpdateRuntimeResult.cs │ │ │ │ ├── ICoreWebView2ExperimentalWebMessageReceivedEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalWebResourceRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2ExperimentalWebTexture.cs │ │ │ │ ├── ICoreWebView2FaviconChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2File.cs │ │ │ │ ├── ICoreWebView2FocusChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2Frame.cs │ │ │ │ ├── ICoreWebView2Frame2.cs │ │ │ │ ├── ICoreWebView2Frame3.cs │ │ │ │ ├── ICoreWebView2Frame4.cs │ │ │ │ ├── ICoreWebView2FrameContentLoadingEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameCreatedEventArgs.cs │ │ │ │ ├── ICoreWebView2FrameCreatedEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameDOMContentLoadedEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameDestroyedEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameInfo.cs │ │ │ │ ├── ICoreWebView2FrameInfoCollection.cs │ │ │ │ ├── ICoreWebView2FrameInfoCollectionIterator.cs │ │ │ │ ├── ICoreWebView2FrameNameChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameNavigationCompletedEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameNavigationStartingEventHandler.cs │ │ │ │ ├── ICoreWebView2FramePermissionRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2FrameWebMessageReceivedEventHandler.cs │ │ │ │ ├── ICoreWebView2GetCookiesCompletedHandler.cs │ │ │ │ ├── ICoreWebView2GetFaviconCompletedHandler.cs │ │ │ │ ├── ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler.cs │ │ │ │ ├── ICoreWebView2HistoryChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2HttpHeadersCollectionIterator.cs │ │ │ │ ├── ICoreWebView2HttpRequestHeaders.cs │ │ │ │ ├── ICoreWebView2HttpResponseHeaders.cs │ │ │ │ ├── ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2IsDocumentPlayingAudioChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2IsMutedChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2MoveFocusRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2MoveFocusRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2NavigationCompletedEventArgs.cs │ │ │ │ ├── ICoreWebView2NavigationCompletedEventArgs2.cs │ │ │ │ ├── ICoreWebView2NavigationCompletedEventHandler.cs │ │ │ │ ├── ICoreWebView2NavigationStartingEventArgs.cs │ │ │ │ ├── ICoreWebView2NavigationStartingEventArgs2.cs │ │ │ │ ├── ICoreWebView2NavigationStartingEventHandler.cs │ │ │ │ ├── ICoreWebView2NewBrowserVersionAvailableEventHandler.cs │ │ │ │ ├── ICoreWebView2NewWindowRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2NewWindowRequestedEventArgs2.cs │ │ │ │ ├── ICoreWebView2NewWindowRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2ObjectCollectionView.cs │ │ │ │ ├── ICoreWebView2PermissionRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2PermissionRequestedEventArgs2.cs │ │ │ │ ├── ICoreWebView2PermissionRequestedEventArgs3.cs │ │ │ │ ├── ICoreWebView2PermissionRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2PermissionSetting.cs │ │ │ │ ├── ICoreWebView2PermissionSettingCollectionView.cs │ │ │ │ ├── ICoreWebView2PointerInfo.cs │ │ │ │ ├── ICoreWebView2PrintCompletedHandler.cs │ │ │ │ ├── ICoreWebView2PrintSettings.cs │ │ │ │ ├── ICoreWebView2PrintSettings2.cs │ │ │ │ ├── ICoreWebView2PrintToPdfCompletedHandler.cs │ │ │ │ ├── ICoreWebView2PrintToPdfStreamCompletedHandler.cs │ │ │ │ ├── ICoreWebView2PrivateContextMenuItem.cs │ │ │ │ ├── ICoreWebView2PrivateEnvironmentTesting.cs │ │ │ │ ├── ICoreWebView2PrivateHostObjectAsyncMethodContinuation.cs │ │ │ │ ├── ICoreWebView2PrivateHostObjectHelper.cs │ │ │ │ ├── ICoreWebView2PrivateHostObjectHelper2.cs │ │ │ │ ├── ICoreWebView2PrivateKeyPressedEventArgs.cs │ │ │ │ ├── ICoreWebView2PrivateKeyPressedEventHandler.cs │ │ │ │ ├── ICoreWebView2PrivatePartial.cs │ │ │ │ ├── ICoreWebView2PrivatePartialController.cs │ │ │ │ ├── ICoreWebView2PrivateRemoteObjectProxy.cs │ │ │ │ ├── ICoreWebView2ProcessFailedEventArgs.cs │ │ │ │ ├── ICoreWebView2ProcessFailedEventArgs2.cs │ │ │ │ ├── ICoreWebView2ProcessFailedEventHandler.cs │ │ │ │ ├── ICoreWebView2ProcessInfo.cs │ │ │ │ ├── ICoreWebView2ProcessInfoCollection.cs │ │ │ │ ├── ICoreWebView2ProcessInfosChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2Profile.cs │ │ │ │ ├── ICoreWebView2Profile2.cs │ │ │ │ ├── ICoreWebView2Profile3.cs │ │ │ │ ├── ICoreWebView2Profile4.cs │ │ │ │ ├── ICoreWebView2Profile5.cs │ │ │ │ ├── ICoreWebView2Profile6.cs │ │ │ │ ├── ICoreWebView2RasterizationScaleChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2ScriptDialogOpeningEventArgs.cs │ │ │ │ ├── ICoreWebView2ScriptDialogOpeningEventHandler.cs │ │ │ │ ├── ICoreWebView2ServerCertificateErrorDetectedEventArgs.cs │ │ │ │ ├── ICoreWebView2ServerCertificateErrorDetectedEventHandler.cs │ │ │ │ ├── ICoreWebView2SetPermissionStateCompletedHandler.cs │ │ │ │ ├── ICoreWebView2Settings.cs │ │ │ │ ├── ICoreWebView2Settings2.cs │ │ │ │ ├── ICoreWebView2Settings3.cs │ │ │ │ ├── ICoreWebView2Settings4.cs │ │ │ │ ├── ICoreWebView2Settings5.cs │ │ │ │ ├── ICoreWebView2Settings6.cs │ │ │ │ ├── ICoreWebView2Settings7.cs │ │ │ │ ├── ICoreWebView2Settings8.cs │ │ │ │ ├── ICoreWebView2SharedBuffer.cs │ │ │ │ ├── ICoreWebView2SourceChangedEventArgs.cs │ │ │ │ ├── ICoreWebView2SourceChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2StateChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2StatusBarTextChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2StringCollection.cs │ │ │ │ ├── ICoreWebView2TrySuspendCompletedHandler.cs │ │ │ │ ├── ICoreWebView2WebMessageReceivedEventArgs.cs │ │ │ │ ├── ICoreWebView2WebMessageReceivedEventArgs2.cs │ │ │ │ ├── ICoreWebView2WebMessageReceivedEventHandler.cs │ │ │ │ ├── ICoreWebView2WebResourceRequest.cs │ │ │ │ ├── ICoreWebView2WebResourceRequestedEventArgs.cs │ │ │ │ ├── ICoreWebView2WebResourceRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2WebResourceResponse.cs │ │ │ │ ├── ICoreWebView2WebResourceResponseReceivedEventArgs.cs │ │ │ │ ├── ICoreWebView2WebResourceResponseReceivedEventHandler.cs │ │ │ │ ├── ICoreWebView2WebResourceResponseView.cs │ │ │ │ ├── ICoreWebView2WebResourceResponseViewGetContentCompletedHandler.cs │ │ │ │ ├── ICoreWebView2WindowCloseRequestedEventHandler.cs │ │ │ │ ├── ICoreWebView2WindowFeatures.cs │ │ │ │ ├── ICoreWebView2ZoomFactorChangedEventHandler.cs │ │ │ │ ├── ICoreWebView2_10.cs │ │ │ │ ├── ICoreWebView2_11.cs │ │ │ │ ├── ICoreWebView2_12.cs │ │ │ │ ├── ICoreWebView2_13.cs │ │ │ │ ├── ICoreWebView2_14.cs │ │ │ │ ├── ICoreWebView2_15.cs │ │ │ │ ├── ICoreWebView2_16.cs │ │ │ │ ├── ICoreWebView2_17.cs │ │ │ │ ├── ICoreWebView2_2.cs │ │ │ │ ├── ICoreWebView2_3.cs │ │ │ │ ├── ICoreWebView2_4.cs │ │ │ │ ├── ICoreWebView2_5.cs │ │ │ │ ├── ICoreWebView2_6.cs │ │ │ │ ├── ICoreWebView2_7.cs │ │ │ │ ├── ICoreWebView2_8.cs │ │ │ │ ├── ICoreWebView2_9.cs │ │ │ │ ├── tagPOINT.cs │ │ │ │ └── tagRECT.cs │ │ │ ├── WebView2RuntimeNotFoundException.cs │ │ │ └── runtimes │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ └── win-x86 │ │ │ │ └── native │ │ │ │ └── WebView2Loader.dll │ │ ├── Microsoft.Web.WebView2.WinForms │ │ │ ├── CoreWebView2CreationProperties.cs │ │ │ ├── Microsoft.Web.WebView2.WinForms.csproj │ │ │ ├── Properties │ │ │ │ └── _globalusing.cs │ │ │ └── WebView2.cs │ │ └── Microsoft.Web.WebView2.Wpf │ │ │ ├── CoreWebView2CreationProperties.cs │ │ │ ├── ImplicitInitGate.cs │ │ │ ├── Microsoft.Web.WebView2.Wpf.csproj │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── _globalusing.cs │ │ │ └── WebView2.cs │ └── iOS │ │ └── Avalonia.WebView.iOS │ │ ├── AppBuilderExtensions.cs │ │ ├── Avalonia.WebView.iOS.csproj │ │ ├── BlazorWebViewHandlerProvider.cs │ │ ├── Common │ │ └── iOSAssetFileProvider.cs │ │ ├── Core │ │ ├── IosWebViewCore-assist.cs │ │ ├── IosWebViewCore-core.cs │ │ ├── IosWebViewCore-event.cs │ │ ├── IosWebViewCore-override.cs │ │ └── IosWebViewCore.cs │ │ ├── Delegates │ │ ├── WebViewNavigationDelegate.cs │ │ └── WebViewUIDelegate.cs │ │ ├── Handlers │ │ ├── SchemeHandler.cs │ │ └── WebViewScriptMessageHandler.cs │ │ ├── Helpers │ │ └── BlazorScriptHelper.cs │ │ ├── Properties │ │ └── _globalusing.cs │ │ ├── ViewHandlerProvider.cs │ │ └── WebViewHandler.cs ├── Sample │ ├── SampleBlazorWebView │ │ ├── SampleBlazorWebView.Android │ │ │ ├── Icon.png │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ └── AndroidManifest.xml │ │ │ ├── Resources │ │ │ │ ├── drawable │ │ │ │ │ └── splash_screen.xml │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ └── SampleBlazorWebView.Android.csproj │ │ ├── SampleBlazorWebView.Desktop │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SampleBlazorWebView.Desktop.csproj │ │ │ └── app.manifest │ │ ├── SampleBlazorWebView.Wpf │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── SampleBlazorWebView.Wpf.csproj │ │ ├── SampleBlazorWebView.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Resources │ │ │ │ └── LaunchScreen.xib │ │ │ └── SampleBlazorWebView.iOS.csproj │ │ ├── SampleBlazorWebView │ │ │ ├── App.axaml │ │ │ ├── App.axaml.cs │ │ │ ├── Assets │ │ │ │ └── avalonia-logo.ico │ │ │ ├── SampleBlazorWebView.csproj │ │ │ ├── ViewModels │ │ │ │ ├── MainViewModel.cs │ │ │ │ └── ViewModelBase.cs │ │ │ └── Views │ │ │ │ ├── MainView.axaml │ │ │ │ ├── MainView.axaml.cs │ │ │ │ ├── MainWindow.axaml │ │ │ │ └── MainWindow.axaml.cs │ │ └── SampleBlazorWebViewShared │ │ │ ├── AppWeb.razor │ │ │ ├── Data │ │ │ ├── App │ │ │ │ ├── ECommerce │ │ │ │ │ ├── BasketService.cs │ │ │ │ │ ├── Dto │ │ │ │ │ │ ├── AddressDto.cs │ │ │ │ │ │ ├── AddressTypeDto.cs │ │ │ │ │ │ ├── BasketItemDto.cs │ │ │ │ │ │ ├── GoodsDto.cs │ │ │ │ │ │ ├── MultiRangeDto.cs │ │ │ │ │ │ └── RelatedGoodsDto.cs │ │ │ │ │ └── ShopService.cs │ │ │ │ ├── Invoice │ │ │ │ │ ├── Dto │ │ │ │ │ │ ├── BillDto.cs │ │ │ │ │ │ ├── InvoiceRecordDto.cs │ │ │ │ │ │ └── InvoiceStateDto.cs │ │ │ │ │ └── InvoiceService.cs │ │ │ │ ├── Todo │ │ │ │ │ ├── Dto │ │ │ │ │ │ ├── SelectData.cs │ │ │ │ │ │ └── TodoDto.cs │ │ │ │ │ └── TodoService.cs │ │ │ │ └── User │ │ │ │ │ ├── Dto │ │ │ │ │ ├── PermissionDto.cs │ │ │ │ │ └── UserDto.cs │ │ │ │ │ └── UserService.cs │ │ │ ├── Base │ │ │ │ ├── GlobalVariables.cs │ │ │ │ └── PagingData.cs │ │ │ ├── Dashboard │ │ │ │ ├── Analytics │ │ │ │ │ └── AnalyticsService.cs │ │ │ │ └── ECommerce │ │ │ │ │ ├── Dto │ │ │ │ │ └── CompanyDto.cs │ │ │ │ │ └── ECommerceService.cs │ │ │ ├── Others │ │ │ │ └── AccountSettings │ │ │ │ │ ├── AccountSettingService.cs │ │ │ │ │ └── Dto │ │ │ │ │ ├── AccountDto.cs │ │ │ │ │ ├── CountryDto.cs │ │ │ │ │ ├── InformationDto.cs │ │ │ │ │ └── SocialDto.cs │ │ │ └── Shared │ │ │ │ └── Favorite │ │ │ │ └── FavoriteService.cs │ │ │ ├── Global │ │ │ ├── Config │ │ │ │ ├── GlobalConfig.cs │ │ │ │ ├── NavigationStyles.cs │ │ │ │ └── PageModes.cs │ │ │ ├── Nav │ │ │ │ ├── Model │ │ │ │ │ └── NavModel.cs │ │ │ │ ├── NavHelper.cs │ │ │ │ └── NavServiceCollectionExtensions.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ │ ├── Pages │ │ │ ├── App │ │ │ │ ├── ECommerce │ │ │ │ │ ├── Order │ │ │ │ │ │ ├── Address.razor │ │ │ │ │ │ ├── Cart.razor │ │ │ │ │ │ ├── Order.razor │ │ │ │ │ │ └── Payment.razor │ │ │ │ │ └── Shop │ │ │ │ │ │ ├── Details.razor │ │ │ │ │ │ ├── Shop.razor │ │ │ │ │ │ ├── Shop.razor.cs │ │ │ │ │ │ └── ViewModel │ │ │ │ │ │ └── ShopPage.cs │ │ │ │ ├── Invoice │ │ │ │ │ ├── Add.razor │ │ │ │ │ ├── Add.razor.cs │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── AddPayment.razor │ │ │ │ │ │ ├── InvoiceList.razor │ │ │ │ │ │ ├── InvoiceList.razor.cs │ │ │ │ │ │ └── SendInvoice.razor │ │ │ │ │ ├── Edit.razor │ │ │ │ │ ├── List.razor │ │ │ │ │ ├── Preview.razor │ │ │ │ │ ├── Preview.razor.cs │ │ │ │ │ └── ViewModel │ │ │ │ │ │ └── InvoicePage.cs │ │ │ │ ├── Todo │ │ │ │ │ ├── Todo.razor │ │ │ │ │ ├── Todo.razor.cs │ │ │ │ │ ├── TodoDetail.razor │ │ │ │ │ ├── TodoDetail.razor.cs │ │ │ │ │ ├── TodoNav.razor │ │ │ │ │ └── TodoNavItem.razor │ │ │ │ └── User │ │ │ │ │ ├── Add.razor │ │ │ │ │ ├── Edit.razor │ │ │ │ │ ├── List.razor │ │ │ │ │ ├── List.razor.cs │ │ │ │ │ ├── View.razor │ │ │ │ │ └── ViewModel │ │ │ │ │ └── UserPage.cs │ │ │ ├── Authentication │ │ │ │ ├── Components │ │ │ │ │ ├── Login.razor │ │ │ │ │ └── Login.razor.cs │ │ │ │ ├── Login-v1.razor │ │ │ │ └── Login-v2.razor │ │ │ ├── Dashboard │ │ │ │ ├── Analytics.razor │ │ │ │ ├── Analytics.razor.cs │ │ │ │ ├── ECommerce.razor │ │ │ │ └── ECommerce.razor.cs │ │ │ ├── Home │ │ │ │ └── Index.razor │ │ │ └── Others │ │ │ │ ├── AccountSettings │ │ │ │ └── AccountSettings.razor │ │ │ │ ├── Error.razor │ │ │ │ ├── NotAuthorized.razor │ │ │ │ └── NotFound.razor │ │ │ ├── Properties │ │ │ └── _globalusing.cs │ │ │ ├── SampleBlazorWebViewShared.csproj │ │ │ ├── Shared │ │ │ ├── Breadcrumb.razor │ │ │ ├── EmptyLayout.razor │ │ │ ├── Favorite.razor │ │ │ ├── Favorite.razor.cs │ │ │ ├── Language.razor │ │ │ ├── Login.razor │ │ │ ├── MainLayout.razor │ │ │ ├── Navigation.razor │ │ │ ├── PageTabs.razor │ │ │ ├── ProComponentBase.cs │ │ │ ├── Search.razor │ │ │ ├── Settings.razor │ │ │ └── SurveyPrompt.razor │ │ │ ├── Working │ │ │ └── JsWorking.cs │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── app.css │ │ │ ├── fontawesome │ │ │ │ └── v6.4.0 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── css │ │ │ │ │ └── all.min.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── masa-blazor-pro.css │ │ │ ├── material │ │ │ │ ├── flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 │ │ │ │ └── icons.css │ │ │ ├── materialdesign │ │ │ │ └── v7.1.96 │ │ │ │ │ ├── css │ │ │ │ │ ├── materialdesignicons.min.css │ │ │ │ │ └── materialdesignicons.min.css.map │ │ │ │ │ └── fonts │ │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ ├── site.css │ │ │ └── spinkit.min.css │ │ │ ├── favicon.ico │ │ │ ├── i18n │ │ │ ├── en-US.json │ │ │ ├── supportedCultures.json │ │ │ └── zh-CN.json │ │ │ ├── img │ │ │ ├── analytics │ │ │ │ ├── json.png │ │ │ │ ├── left.png │ │ │ │ └── right.png │ │ │ ├── apps-eCommerce │ │ │ │ ├── 1.jpg │ │ │ │ ├── 1.png │ │ │ │ ├── 10.jpg │ │ │ │ ├── 10.png │ │ │ │ ├── 11.jpg │ │ │ │ ├── 11.png │ │ │ │ ├── 12.jpg │ │ │ │ ├── 12.png │ │ │ │ ├── 13.jpg │ │ │ │ ├── 13.png │ │ │ │ ├── 14.jpg │ │ │ │ ├── 14.png │ │ │ │ ├── 15.jpg │ │ │ │ ├── 15.png │ │ │ │ ├── 16.jpg │ │ │ │ ├── 16.png │ │ │ │ ├── 17.jpg │ │ │ │ ├── 17.png │ │ │ │ ├── 18.jpg │ │ │ │ ├── 18.png │ │ │ │ ├── 19.jpg │ │ │ │ ├── 19.png │ │ │ │ ├── 2.jpg │ │ │ │ ├── 2.png │ │ │ │ ├── 20.jpg │ │ │ │ ├── 20.png │ │ │ │ ├── 21.jpg │ │ │ │ ├── 21.png │ │ │ │ ├── 22.jpg │ │ │ │ ├── 22.png │ │ │ │ ├── 23.jpg │ │ │ │ ├── 23.png │ │ │ │ ├── 24.jpg │ │ │ │ ├── 24.png │ │ │ │ ├── 25.jpg │ │ │ │ ├── 25.png │ │ │ │ ├── 26.jpg │ │ │ │ ├── 26.png │ │ │ │ ├── 27.jpg │ │ │ │ ├── 27.png │ │ │ │ ├── 28.jpg │ │ │ │ ├── 29.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 3.png │ │ │ │ ├── 30.jpg │ │ │ │ ├── 31.jpg │ │ │ │ ├── 32.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 4.png │ │ │ │ ├── 5.jpg │ │ │ │ ├── 5.png │ │ │ │ ├── 6.jpg │ │ │ │ ├── 6.png │ │ │ │ ├── 7.jpg │ │ │ │ ├── 7.png │ │ │ │ ├── 8.jpg │ │ │ │ ├── 8.png │ │ │ │ ├── 9.jpg │ │ │ │ └── 9.png │ │ │ ├── auth │ │ │ │ ├── forgot-password-v2.9faba3c1.svg │ │ │ │ └── register-v2.0a9e487c.svg │ │ │ ├── avatar │ │ │ │ ├── 1.svg │ │ │ │ ├── 10.svg │ │ │ │ ├── 11.svg │ │ │ │ ├── 12.svg │ │ │ │ ├── 13.svg │ │ │ │ ├── 14.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── 4.svg │ │ │ │ ├── 7.svg │ │ │ │ ├── 8.svg │ │ │ │ └── 9.svg │ │ │ ├── eCommerce │ │ │ │ ├── rectangle.png │ │ │ │ └── trophy.png │ │ │ ├── login │ │ │ │ ├── 2873.png │ │ │ │ ├── Gxwd.png │ │ │ │ └── left.svg │ │ │ ├── mainLayout │ │ │ │ ├── logo-en.svg │ │ │ │ └── logo.svg │ │ │ └── status │ │ │ │ ├── 401.png │ │ │ │ ├── 404.png │ │ │ │ └── 500.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── echarts │ │ │ │ └── 5.1.1 │ │ │ │ └── echarts.min.js │ │ │ ├── nav │ │ │ └── nav.json │ │ │ └── sample-data │ │ │ └── weather.json │ └── SampleWebView │ │ ├── SampleWebView.Android │ │ ├── Icon.png │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ └── AndroidManifest.xml │ │ ├── Resources │ │ │ ├── drawable │ │ │ │ └── splash_screen.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── SampleWebView.Android.csproj │ │ ├── SampleWebView.Desktop │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SampleWebView.Desktop.csproj │ │ └── app.manifest │ │ ├── SampleWebView.iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Resources │ │ │ └── LaunchScreen.xib │ │ └── SampleWebView.iOS.csproj │ │ └── SampleWebView │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── Assets │ │ └── avalonia-logo.ico │ │ ├── SampleWebView.csproj │ │ ├── ViewModels │ │ ├── MainViewModel.cs │ │ └── ViewModelBase.cs │ │ └── Views │ │ ├── MainView.axaml │ │ ├── MainView.axaml.cs │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── Toolkit.Shared │ ├── OperatingSystemEx.cs │ ├── Toolkit.Shared.csproj │ └── Utf8Buffer.cs └── WebView.Core │ ├── Configurations │ └── WebViewCreationProperties.cs │ ├── Enums │ └── UrlRequestStrategy.cs │ ├── Events │ ├── WebViewCreatedEventArgs.cs │ ├── WebViewCreatingEventArgs.cs │ ├── WebViewMessageReceivedEventArgs.cs │ ├── WebViewNewWindowEventArgs.cs │ ├── WebViewUrlLoadedEventArg.cs │ └── WebViewUrlLoadingEventArg.cs │ ├── Extensions │ ├── TaskExtensions.cs │ └── UriExtensions.cs │ ├── Helpers │ ├── OpenUriHelper.cs │ └── QueryStringHelper.cs │ ├── IPlatformBlazorWebViewProvider.cs │ ├── IPlatformWebView.cs │ ├── IPlatformWebView@T.cs │ ├── IVirtualBlazorWebViewProvider.cs │ ├── IVirtualWebView.cs │ ├── IVirtualWebView@T.cs │ ├── IVirtualWebViewControlCallBack.cs │ ├── IVirtualWebViewProvider.cs │ ├── IWebViewControl.cs │ ├── IWebViewEventHandler.cs │ ├── Ioc │ └── WebViewLocator.cs │ ├── Models │ ├── WebResourceRequest.cs │ ├── WebResourceResponse.cs │ └── WebScheme.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── WebView.Core.csproj └── global.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Avalonia.WebView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Avalonia.WebView.sln -------------------------------------------------------------------------------- /Build/Directory.Packages.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.Packages.targets -------------------------------------------------------------------------------- /Build/Directory.build.common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.build.common.props -------------------------------------------------------------------------------- /Build/Directory.build.common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.build.common.targets -------------------------------------------------------------------------------- /Build/Directory.build.operation.common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.build.operation.common.props -------------------------------------------------------------------------------- /Build/Directory.webview.android.common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.webview.android.common.targets -------------------------------------------------------------------------------- /Build/Directory.webview.blazor.common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.webview.blazor.common.targets -------------------------------------------------------------------------------- /Build/Directory.webview.desktop.common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.webview.desktop.common.targets -------------------------------------------------------------------------------- /Build/Directory.webview.ios.common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Build/Directory.webview.ios.common.targets -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Directory.build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Directory.build.targets -------------------------------------------------------------------------------- /Directory.buildcpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Directory.buildcpp.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/LICENSE -------------------------------------------------------------------------------- /Nuget.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Nuget.bat -------------------------------------------------------------------------------- /Packages/WebView.Avalonia/WebView.Avalonia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Packages/WebView.Avalonia/WebView.Avalonia.csproj -------------------------------------------------------------------------------- /Packages/webview@avalonia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Packages/webview@avalonia-logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /Source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/.DS_Store -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/BlazorWebView-Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/BlazorWebView-Core.cs -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/BlazorWebView-Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/BlazorWebView-Events.cs -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/BlazorWebView-Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/BlazorWebView-Override.cs -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/BlazorWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/BlazorWebView.cs -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/Core/AvaloniaDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/Core/AvaloniaDispatcher.cs -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Avalonia.BlazorWebView/Properties/_globalusing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.BlazorWebView/Properties/_globalusing.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/Avalonia.WebView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/Avalonia.WebView.csproj -------------------------------------------------------------------------------- /Source/Avalonia.WebView/AvaloniaWebViewBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/AvaloniaWebViewBuilder.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/Core/IEmptyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/Core/IEmptyView.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/Helpers/BorderRenderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/Helpers/BorderRenderHelper.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/Properties/_globalusing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/Properties/_globalusing.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-AvaloniaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-AvaloniaProperty.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-Core.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-Events.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-Host-AvaloniaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-Host-AvaloniaProperty.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-Override.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-VirtualView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-VirtualView.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-VirtualViewCallBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-VirtualViewCallBack.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView-WebViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView-WebViewControl.cs -------------------------------------------------------------------------------- /Source/Avalonia.WebView/WebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Avalonia.WebView/WebView.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/AppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/AppBuilderExtensions.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/Handlers/ViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/Handlers/ViewHandler.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/Handlers/ViewHandler@T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/Handlers/ViewHandler@T.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/IPropertyMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/IPropertyMapper.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/IPropertyMapper@T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/IPropertyMapper@T.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/IViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/IViewHandler.cs -------------------------------------------------------------------------------- /Source/AvaloniaWebView.Shared/IViewHandlerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/AvaloniaWebView.Shared/IViewHandlerProvider.cs -------------------------------------------------------------------------------- /Source/DryIoc.Shared/DryIoc.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/DryIoc.Shared/DryIoc.Shared.csproj -------------------------------------------------------------------------------- /Source/DryIoc.Shared/Extensions/DryIocExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/DryIoc.Shared/Extensions/DryIocExtensions.cs -------------------------------------------------------------------------------- /Source/DryIoc.Shared/Extensions/DryIocExtensionsEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/DryIoc.Shared/Extensions/DryIocExtensionsEx.cs -------------------------------------------------------------------------------- /Source/DryIoc.Shared/Extensions/DryIocExtensionsTx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/DryIoc.Shared/Extensions/DryIocExtensionsTx.cs -------------------------------------------------------------------------------- /Source/DryIoc.Shared/Extensions/RulesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/DryIoc.Shared/Extensions/RulesExtensions.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVAsset.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVPlayer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVVideo.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AVFoundation/AVVideoCodec.cs: -------------------------------------------------------------------------------- 1 | namespace AVFoundation; 2 | 3 | public enum AVVideoCodec 4 | { 5 | H264 = 1, 6 | JPEG 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AddressBook/ABGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AddressBook/ABGroup.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AddressBook/ABLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AddressBook/ABLabel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AddressBook/ABPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AddressBook/ABPerson.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AddressBook/ABRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AddressBook/ABRecord.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AddressBook/ABSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AddressBook/ABSource.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AddressBook/ABSourceProperty.cs: -------------------------------------------------------------------------------- 1 | namespace AddressBook; 2 | 3 | public enum ABSourceProperty 4 | { 5 | Name, 6 | Type 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSActionCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSActionCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlert.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlertButtonReturn.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSAlertButtonReturn 4 | { 5 | First = 1000, 6 | Second, 7 | Third 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlertStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlertStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlertType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSAlertType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSAnimation.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSAppearance.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSApplication.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBackingStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBackingStore.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBezelStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBezelStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBezierPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBezierPath.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBitmapFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBitmapFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBorderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBorderType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBox.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBoxType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBoxType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBrowser.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBrowserCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSBrowserCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSBrowserDropOperation.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSBrowserDropOperation : ulong 4 | { 5 | On, 6 | Above 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSButton.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSButtonCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSButtonCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSButtonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSButtonType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCIImageRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSCIImageRep.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCellHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSCellHit.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCellMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSCellMask.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCellType.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSCellType : ulong 4 | { 5 | Null, 6 | Text, 7 | Image 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSClipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSClipView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCollectionViewDropOperation.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSCollectionViewDropOperation : long 4 | { 5 | On, 6 | Before 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSColor.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorList.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorPanel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorPicker.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorSpace.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorWell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSColorWell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSComboBox.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSComboBoxCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSComboBoxCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSComposite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSComposite.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSControl.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSControlSize.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSControlSize : ulong 4 | { 5 | Regular, 6 | Small, 7 | Mini 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSControlText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSControlText.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSControlTint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSControlTint.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSController.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSCursor.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDatePicker.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDatePickerMode.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSDatePickerMode : ulong 4 | { 5 | Single, 6 | Range 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDockTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDockTile.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDocument.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDraggingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDraggingInfo.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDraggingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDraggingItem.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDrawer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSDrawerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSDrawerState.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEPSImageRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEPSImageRep.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEdgeInsets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEdgeInsets.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEvent.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventMask.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventPhase.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventSubtype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventSubtype.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSEventType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSFocusRingType.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSFocusRingType : ulong 4 | { 5 | Default, 6 | None, 7 | Exterior 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSFont.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSFontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSFontManager.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSFontPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSFontPanel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSForm.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSFormCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSFormCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSGLFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSGLFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSGradient.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSGradientType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSGradientType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSGraphics.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSHelpManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSHelpManager.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImage.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageName.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageRect.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageRep.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageScale.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageScaling.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSImageView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSKey.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSLineCapStyle.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSLineCapStyle 4 | { 5 | Butt, 6 | Round, 7 | Square 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSLineJoinStyle.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSLineJoinStyle 4 | { 5 | Miter, 6 | Round, 7 | Bevel 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMatrix.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMatrixMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMatrixMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenu.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuDelegate.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuItem.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuItemCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuItemCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuProperty.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSMenuView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSNib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSNib.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSOpenGLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSOpenGLView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSOpenPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSOpenPanel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSOutlineView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSOutlineView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPageLayout.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPanel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPanelButtonType.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSPanelButtonType 4 | { 5 | Cancel, 6 | Ok 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPasteboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPasteboard.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPathCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPathCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPathControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPathControl.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPathStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPathStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPopUpButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPopUpButton.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPopover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPopover.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPopoverAppearance.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSPopoverAppearance : long 4 | { 5 | Minimal, 6 | HUD 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrintInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrintInfo.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrintPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrintPanel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrinter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSPrinterTableStatus.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSPrinterTableStatus : ulong 4 | { 5 | Ok, 6 | NotFound, 7 | Error 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSProgressIndicatorStyle.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSProgressIndicatorStyle : ulong 4 | { 5 | Bar, 6 | Spinning 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRectEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSRectEdge.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSResponder.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRuleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSRuleEditor.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRuleEditorRowType.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSRuleEditorRowType : ulong 4 | { 5 | Simple, 6 | Compound 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRulerMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSRulerMarker.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRulerOrientation.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSRulerOrientation 4 | { 5 | Horizontal, 6 | Vertical 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRulerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSRulerView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSRunResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSRunResponse.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSavePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSavePanel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSavePanelComplete.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public delegate void NSSavePanelComplete(int result); 4 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSScreen.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSScrollView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSScroller.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSScrollerPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSScrollerPart.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSScrollerStyle.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSScrollerStyle : long 4 | { 5 | Legacy, 6 | Overlay 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSearchField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSearchField.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSegmentStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSegmentStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSShadow.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSharingServiceHandler.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public delegate void NSSharingServiceHandler(); 4 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSlider.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSliderCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSliderCell.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSliderType.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSSliderType : ulong 4 | { 5 | Linear, 6 | Circular 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSound.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSpellChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSpellChecker.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSplitView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSplitView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSStatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSStatusBar.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSStatusItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSStatusItem.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSStepper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSStepper.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSSurfaceOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSSurfaceOrder.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabState.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabViewItem.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabViewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTabViewType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableColumn.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableReorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableReorder.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableRowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableRowView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTableViewDropOperation.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSTableViewDropOperation : ulong 4 | { 5 | On, 6 | Above 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSText.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextBlock.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextBlockLayer.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSTextBlockLayer : long 4 | { 5 | Padding = -1L, 6 | Border, 7 | Margin 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextDelegate.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextField.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextFieldBezelStyle.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSTextFieldBezelStyle 4 | { 5 | Square, 6 | Rounded 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextList.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextMovement.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextStorage.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextTab.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextTabType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextTabType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextTable.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextViewLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTextViewLink.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTokenField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTokenField.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTokenStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTokenStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSToolbar.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSToolbarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSToolbarItem.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTouch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTouch.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTouchPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTouchPhase.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTrackingArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTrackingArea.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTreeNode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSTypesetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSTypesetter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindingRule.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSWindingRule 4 | { 5 | NonZero, 6 | EvenOdd 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindow.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowButton.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowClient.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowDepth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowDepth.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowFrame.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowLevel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowMenu.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowOrderingMode.cs: -------------------------------------------------------------------------------- 1 | namespace AppKit; 2 | 3 | public enum NSWindowOrderingMode : long 4 | { 5 | Below = -1L, 6 | Out, 7 | Above 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowResize.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowSize.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWindowStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/NSWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/NSWorkspace.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AppKit/OneShotTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AppKit/OneShotTracker.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AudioToolbox/ReadProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AudioToolbox/ReadProc.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AudioToolbox/SystemSoundId.cs: -------------------------------------------------------------------------------- 1 | namespace AudioToolbox; 2 | 3 | internal enum SystemSoundId : uint 4 | { 5 | Vibrate = 4095u 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AudioUnit/AUGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AudioUnit/AUGraph.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/AudioUnit/AudioUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/AudioUnit/AudioUnit.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Builder/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Builder/TypeConverter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Constants.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreAnimation/CALayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreAnimation/CALayer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreData/NSDeleteRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreData/NSDeleteRule.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFData.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFUrl.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreFoundation/CFUrlPathStyle.cs: -------------------------------------------------------------------------------- 1 | namespace CoreFoundation; 2 | 3 | public enum CFUrlPathStyle 4 | { 5 | POSIX, 6 | HFS, 7 | Windows 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreFoundation/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreFoundation/Tuple.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGColor.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGFont.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGImage.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGLayer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGLineCap.cs: -------------------------------------------------------------------------------- 1 | namespace CoreGraphics; 2 | 3 | public enum CGLineCap 4 | { 5 | Butt, 6 | Round, 7 | Square 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGLineJoin.cs: -------------------------------------------------------------------------------- 1 | namespace CoreGraphics; 2 | 3 | public enum CGLineJoin 4 | { 5 | Miter, 6 | Round, 7 | Bevel 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGPDFBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGPDFBox.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGPath.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGPoint.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGRect.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGSize.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreGraphics/CGTextEncoding.cs: -------------------------------------------------------------------------------- 1 | namespace CoreGraphics; 2 | 3 | public enum CGTextEncoding 4 | { 5 | FontSpecific, 6 | MacRoman 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIBloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIBloom.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIColor.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIColorCube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIColorCube.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIColorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIColorMap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIContext.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CICrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CICrop.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIDetector.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIDotScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIDotScreen.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFeature.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFilter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFilterMode.cs: -------------------------------------------------------------------------------- 1 | namespace CoreImage; 2 | 3 | public enum CIFilterMode 4 | { 5 | Nearest, 6 | Linear 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIGloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIGloom.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIHueAdjust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIHueAdjust.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIImage.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIKernel.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIPixellate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIPixellate.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIPlugIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIPlugIn.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CISampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CISampler.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CISepiaTone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CISepiaTone.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIToneCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIToneCurve.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIVector.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIVibrance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreImage/CIVibrance.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/CIWrapMode.cs: -------------------------------------------------------------------------------- 1 | namespace CoreImage; 2 | 3 | public enum CIWrapMode 4 | { 5 | Black, 6 | Clamp 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreImage/FaceDetectorAccuracy.cs: -------------------------------------------------------------------------------- 1 | namespace CoreImage; 2 | 3 | public enum FaceDetectorAccuracy 4 | { 5 | High, 6 | Low 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreLocation/CLError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreLocation/CLError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMClock.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMMediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMMediaType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMSyncError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMSyncError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTime.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTimeRange.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTimeScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTimeScale.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTimebase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMedia/CMTimebase.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/Midi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/Midi.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiClient.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiDevice.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiEndpoint.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiEntity.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiObject.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiPacket.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiPort.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiReadProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreMidi/MidiReadProc.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreServices/CFHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreServices/CFHost.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/Adapter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTBaselineFont.cs: -------------------------------------------------------------------------------- 1 | namespace CoreText; 2 | 3 | public enum CTBaselineFont 4 | { 5 | Reference, 6 | Original 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTFont.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTFontFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTFontFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTFontTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTFontTable.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTFontTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTFontTraits.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTFrame.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTGlyphInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTGlyphInfo.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTLine.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTRun.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTRunStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTRunStatus.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTTextTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTTextTab.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreText/CTTypesetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreText/CTTypesetter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVBuffer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVOptionFlags.cs: -------------------------------------------------------------------------------- 1 | namespace CoreVideo; 2 | 3 | public enum CVOptionFlags : long 4 | { 5 | None 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVReturn.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVSMPTETime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVSMPTETime.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVTime.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVTimeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVTimeFlags.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVTimeStamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreVideo/CVTimeStamp.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreWlan/CWInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreWlan/CWInterface.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/CoreWlan/CWNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/CoreWlan/CWNetwork.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/EventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/EventFilter.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/EventFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/EventFlags.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/FilterFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/FilterFlags.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/KernelEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/KernelEvent.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/KernelQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/KernelQueue.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/Message.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/SystemLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/SystemLog.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Darwin/TimeSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Darwin/TimeSpec.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/AEEventID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/AEEventID.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSAction.cs: -------------------------------------------------------------------------------- 1 | namespace Foundation; 2 | 3 | public delegate void NSAction(); 4 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSArray.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSBundle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSCache.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSCalendar.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSCoder.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSData.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSDate.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSDecimal.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSFileType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSIndexSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSIndexSet.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSLocale.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSMachPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSMachPort.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSNull.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSNumber.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSObject.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSPipe.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSPort.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSProxy.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSRange.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSRunLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSRunLoop.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSSet.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSStream.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSString.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSTask.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSThread.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSTimeZone.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSTimer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSUrl.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSUrlCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSUrlCache.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSUrlError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSUrlError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSUuid.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSValue.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Foundation/NSZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Foundation/NSZone.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/HttpVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/HttpVersion.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageIO/CGImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ImageIO/CGImageSource.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKCameraDeviceViewDisplayMode.cs: -------------------------------------------------------------------------------- 1 | namespace ImageKit; 2 | 3 | public enum IKCameraDeviceViewDisplayMode 4 | { 5 | Table, 6 | Icon 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKCameraDeviceViewTransferMode.cs: -------------------------------------------------------------------------------- 1 | namespace ImageKit; 2 | 3 | public enum IKCameraDeviceViewTransferMode 4 | { 5 | File, 6 | Memory 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKCellsStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ImageKit/IKCellsStyle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKGroupStyle.cs: -------------------------------------------------------------------------------- 1 | namespace ImageKit; 2 | 3 | public enum IKGroupStyle 4 | { 5 | Bezel, 6 | Disclosure 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ImageKit/IKImageView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKScannerDeviceViewTransferMode.cs: -------------------------------------------------------------------------------- 1 | namespace ImageKit; 2 | 3 | public enum IKScannerDeviceViewTransferMode 4 | { 5 | File, 6 | Memory 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ImageKit/IKSlideshow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ImageKit/IKSlideshow.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/JavaScriptCore/JSType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/JavaScriptCore/JSType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Libraries.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Class.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Dlfcn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Dlfcn.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Messaging.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Protocol.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Runtime.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/RuntimeEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/RuntimeEx.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/ObjCRuntime/Selector.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/AL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/AL.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALBufferState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALBufferState.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALCapability.cs: -------------------------------------------------------------------------------- 1 | namespace OpenAL; 2 | 3 | public enum ALCapability 4 | { 5 | Invalid = -1 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetBufferi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetBufferi.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetFloat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetInteger.cs: -------------------------------------------------------------------------------- 1 | namespace OpenAL; 2 | 3 | public enum ALGetInteger 4 | { 5 | DistanceModel = 53248 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetSourcei.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetSourcei.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALGetString.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALListener3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALListener3f.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALListenerf.cs: -------------------------------------------------------------------------------- 1 | namespace OpenAL; 2 | 3 | public enum ALListenerf 4 | { 5 | Gain = 4106, 6 | EfxMetersPerUnit = 131076 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALListenerfv.cs: -------------------------------------------------------------------------------- 1 | namespace OpenAL; 2 | 3 | public enum ALListenerfv 4 | { 5 | Orientation = 4111 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSource3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSource3f.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSource3i.cs: -------------------------------------------------------------------------------- 1 | namespace OpenAL; 2 | 3 | public enum ALSource3i 4 | { 5 | EfxAuxiliarySendFilter = 131078 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourceState.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourceType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourceb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourceb.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourcef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourcef.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourcei.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ALSourcei.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/Alc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/Alc.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/AlcError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/AlcError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/AlcGetInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/AlcGetInteger.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/AlcGetString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/AlcGetString.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenAL/ContextHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenAL/ContextHandle.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AccumOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AccumOp.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/All.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/All.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AlphaFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AlphaFunction.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AmdConservativeDepth.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum AmdConservativeDepth 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AmdDebugOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AmdDebugOutput.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AmdDrawBuffersBlend.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum AmdDrawBuffersBlend 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AmdShaderStencilExport.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum AmdShaderStencilExport 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AmdTransformFeedback3LinesTriangles.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum AmdTransformFeedback3LinesTriangles 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleFence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleFence.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleRgb422.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleRgb422.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleRowBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleRowBytes.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleYcbcr422.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AppleYcbcr422.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbClEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbClEvent.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbCompatibility.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbCompatibility 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbCopyBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbCopyBuffer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDebugOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDebugOutput.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDepthClamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDepthClamp.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDrawBuffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDrawBuffers.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDrawBuffersBlend.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbDrawBuffersBlend 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDrawElementsBaseVertex.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbDrawElementsBaseVertex 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbDrawInstanced.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbDrawInstanced 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbExplicitAttribLocation.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbExplicitAttribLocation 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbFragmentCoordConventions.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbFragmentCoordConventions 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbFragmentProgramShadow.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbFragmentProgramShadow 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbGpuShader5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbGpuShader5.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbImaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbImaging.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbMultisample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbMultisample.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbOcclusionQuery2.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbOcclusionQuery2 4 | { 5 | AnySamplesPassed = 35887 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbPointSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbPointSprite.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbRobustness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbRobustness.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShaderBitEncoding.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbShaderBitEncoding 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShaderPrecision.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbShaderPrecision 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShaderStencilExport.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbShaderStencilExport 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShaderTextureLod.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbShaderTextureLod 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShadow.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbShadowAmbient.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbShadowAmbient 4 | { 5 | TextureCompareFailValueArb = 32959 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbSync.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTextureEnvAdd.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbTextureEnvAdd 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTextureEnvCrossbar.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbTextureEnvCrossbar 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTextureNonPowerOfTwo.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbTextureNonPowerOfTwo 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTextureQueryLod.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbTextureQueryLod 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTextureRg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTextureRg.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTimerQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbTimerQuery.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbVertexBlend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbVertexBlend.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArbWindowPos.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ArbWindowPos 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ArrayCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ArrayCap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiDrawBuffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiDrawBuffers.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiMapObjectBuffer.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum AtiMapObjectBuffer 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiMeminfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiMeminfo.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiPnTriangles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiPnTriangles.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AtiVertexAttribArrayObject.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum AtiVertexAttribArrayObject 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/AttribMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/AttribMask.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BeginMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/BeginMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BinaryFormat.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum BinaryFormat 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BlitFramebufferFilter.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum BlitFramebufferFilter 4 | { 5 | Nearest = 9728, 6 | Linear 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Boolean.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum Boolean 4 | { 5 | False, 6 | True 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferAccess.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferPointer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferTarget.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferUsageArb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/BufferUsageArb.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/CGLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/CGLContext.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/CGLErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/CGLErrorCode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/CGLPixelFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/CGLPixelFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ClampColorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ClampColorMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ClearBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ClearBuffer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ClipPlaneName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ClipPlaneName.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Color4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Color4.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/CullFaceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/CullFaceMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/DataType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/DepthFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/DepthFunction.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/DrawBufferMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/DrawBufferMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/EnableCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/EnableCap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ErrorCode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Ext422Pixels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Ext422Pixels.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtAbgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtAbgr.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBgra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBgra.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBlendColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBlendColor.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBlendLogicOp.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtBlendLogicOp 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBlendMinmax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtBlendMinmax.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtCmyka.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtCmyka.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtColorSubtable.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtColorSubtable 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtConvolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtConvolution.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtCopyTexture.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtCopyTexture 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtCullVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtCullVertex.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtDrawBuffers2.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtDrawBuffers2 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtDrawInstanced.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtDrawInstanced 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtFogCoord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtFogCoord.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtGpuProgramParameters.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtGpuProgramParameters 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtGpuShader4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtGpuShader4.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtHistogram.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtIndexFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtIndexFunc.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtIndexTexture.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtIndexTexture 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtMiscAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtMiscAttribute 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtMultiDrawArrays.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtMultiDrawArrays 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtMultisample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtMultisample.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtPackedFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtPackedFloat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtPixelTransformColorTable.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtPixelTransformColorTable 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtSeparateShaderObjects.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtSeparateShaderObjects 4 | { 5 | ActiveProgramExt = 35725 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtShadowFuncs.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtShadowFuncs 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtStencilWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtStencilWrap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtSubtexture.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtSubtexture 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTexture.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTexture3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTexture3D.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTextureEnvAdd.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ExtTextureEnvAdd 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTextureSrgb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ExtTextureSrgb.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/FfdMaskSgix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/FfdMaskSgix.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/FogMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/FogMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/GL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/GL.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/GetMapQuery.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum GetMapQuery 4 | { 5 | Coeff = 2560, 6 | Order, 7 | Domain 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/GetPName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/GetPName.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/GetPixelMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/GetPixelMap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Gl3DfxTbuffer.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum Gl3DfxTbuffer 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/GremedyFrameTerminator.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum GremedyFrameTerminator 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/GremedyStringMarker.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum GremedyStringMarker 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Half.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/HintMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/HintMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/HintTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/HintTarget.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/IGameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/IGameWindow.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/IbmMultimodeDrawArrays.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum IbmMultimodeDrawArrays 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/IngrPaletteBuffer.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum IngrPaletteBuffer 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/IntelTextureScissor.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum IntelTextureScissor 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/LightName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/LightName.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ListMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ListMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/LogicOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/LogicOp.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MapTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/MapTarget.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/MathHelper.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Matrix4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Matrix4.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Matrix4d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Matrix4d.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MatrixMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/MatrixMode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MesaResizeBuffers.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum MesaResizeBuffers 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MesaTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/MesaTrace.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MesaWindowPos.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum MesaWindowPos 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MeshMode1.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum MeshMode1 4 | { 5 | Point = 6912, 6 | Line 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/MeshMode2.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum MeshMode2 4 | { 5 | Point = 6912, 6 | Line, 7 | Fill 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvBlendSquare.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvBlendSquare 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvCopyImage.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvCopyImage 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvFence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/NvFence.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvFragmentProgram4.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvFragmentProgram4 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvFragmentProgramOption.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvFragmentProgramOption 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvGeometryShader4.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvGeometryShader4 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvHalfFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/NvHalfFloat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvParameterBufferObject2.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvParameterBufferObject2 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvRegisterCombiners2.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvRegisterCombiners2 4 | { 5 | PerStageConstantsNv = 34101 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvTextureBarrier.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvTextureBarrier 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvTextureCompressionVtc.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvTextureCompressionVtc 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvVertexProgram11.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvVertexProgram11 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/NvVertexProgram2.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum NvVertexProgram2 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesDepth24.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/OesDepth24.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesDepth32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/OesDepth32.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesDepthTexture.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum OesDepthTexture 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesElementIndexUint.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum OesElementIndexUint 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesStencil1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/OesStencil1.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesStencil4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/OesStencil4.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OesStencil8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/OesStencil8.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/OmlResample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/OmlResample.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelCopyType.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum PixelCopyType 4 | { 5 | Color = 6144, 6 | Depth, 7 | Stencil 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelFormat.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelMap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/PixelType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/PolygonMode.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum PolygonMode 4 | { 5 | Point = 6912, 6 | Line, 7 | Fill 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/QcomDriverControl.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum QcomDriverControl 4 | { 5 | PerfmonGlobalModeQcom = 36768 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Quaternion.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Quaterniond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Quaterniond.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/QueryCounterTarget.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum QueryCounterTarget 4 | { 5 | Timestamp = 36392 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/QueryTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/QueryTarget.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/S3S3tc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/S3S3tc.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixAsync.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixClipmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixClipmap.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixFlushRaster.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum SgixFlushRaster 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixIccTexture.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum SgixIccTexture 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixShadow.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixSlim.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixSprite.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixTagSampleBuffer.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum SgixTagSampleBuffer 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixYcrcb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixYcrcb.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixYcrcba.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/SgixYcrcba.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ShaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/ShaderType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/ShadingModel.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum ShadingModel 4 | { 5 | Flat = 7424, 6 | Smooth 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/StencilFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/StencilFace.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/StencilOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/StencilOp.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/StringName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/StringName.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/SunVertex.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum SunVertex 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/TextureEnvModePointSprite.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum TextureEnvModePointSprite 4 | { 5 | False, 6 | True 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/TextureUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/TextureUnit.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector2.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector2d.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector2h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector2h.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector3.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector3d.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector3h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector3h.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector4.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector4d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector4d.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector4h.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Vector4h.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version11.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version12.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version13.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version14.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version15.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version20.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version21.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version21.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version30.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version30.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version31.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version31.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version32.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version33.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version33.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version40.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version40.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/Version41.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/Version41.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/VertexAttribDPointerType.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum VertexAttribDPointerType 4 | { 5 | Double = 5130 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/WindowBorder.cs: -------------------------------------------------------------------------------- 1 | namespace OpenGL; 2 | 3 | public enum WindowBorder 4 | { 5 | Resizable, 6 | Fixed, 7 | Hidden 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/OpenGL/WindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/OpenGL/WindowState.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfAction.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfBorder.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfDocument.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfOutline.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfPage.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/PdfKit/PdfView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTError.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTFileType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTMedia.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTMediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTMediaType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTMovie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTMovie.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTMovieLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTMovieLayer.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTMovieView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTMovieView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTTime.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTTimeRange.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/QTTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/QTTrack.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/QTKit/TimeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/QTKit/TimeFlags.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Registrar/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Registrar/Shared.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/ClassKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/ClassKeys.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/SecClass.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/SecItem.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/SecKey.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecKeyType.cs: -------------------------------------------------------------------------------- 1 | namespace Security; 2 | 3 | public enum SecKeyType 4 | { 5 | RSA, 6 | EC 7 | } 8 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecKind.cs: -------------------------------------------------------------------------------- 1 | namespace Security; 2 | 3 | public enum SecKind 4 | { 5 | InternetPassword 6 | } 7 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/SecPolicy.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/SecRecord.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Security/SecTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Security/SecTrust.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Trampolines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Trampolines.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomAttr.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomComment.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomCssRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomCssRule.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomCssValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomCssValue.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomDocument.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomElement.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomEvent.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomEventPhase.cs: -------------------------------------------------------------------------------- 1 | namespace WebKit; 2 | 3 | public enum DomEventPhase : ushort 4 | { 5 | Capturing = 1, 6 | AtTarget, 7 | Bubbling 8 | } 9 | -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomNode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomNodeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomNodeList.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomNodeType.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomObject.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomRange.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/DomText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/DomText.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WKErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WKErrorCode.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WKFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WKFrameInfo.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WKWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WKWebView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WebArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WebArchive.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WebDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WebDownload.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WebFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WebFrame.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WebResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WebResource.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/WebKit/WebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/WebKit/WebView.cs -------------------------------------------------------------------------------- /Source/Platform/Mac/Xamarin.Mac/Xamarin.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Platform/Mac/Xamarin.Mac/Xamarin.Mac.csproj -------------------------------------------------------------------------------- /Source/Sample/SampleWebView/SampleWebView.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Sample/SampleWebView/SampleWebView.iOS/Main.cs -------------------------------------------------------------------------------- /Source/Sample/SampleWebView/SampleWebView/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Sample/SampleWebView/SampleWebView/App.axaml -------------------------------------------------------------------------------- /Source/Toolkit.Shared/OperatingSystemEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Toolkit.Shared/OperatingSystemEx.cs -------------------------------------------------------------------------------- /Source/Toolkit.Shared/Toolkit.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Toolkit.Shared/Toolkit.Shared.csproj -------------------------------------------------------------------------------- /Source/Toolkit.Shared/Utf8Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/Toolkit.Shared/Utf8Buffer.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Enums/UrlRequestStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Enums/UrlRequestStrategy.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Events/WebViewCreatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Events/WebViewCreatedEventArgs.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Helpers/OpenUriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Helpers/OpenUriHelper.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Helpers/QueryStringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Helpers/QueryStringHelper.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IPlatformBlazorWebViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IPlatformBlazorWebViewProvider.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IPlatformWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IPlatformWebView.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IPlatformWebView@T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IPlatformWebView@T.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IVirtualBlazorWebViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IVirtualBlazorWebViewProvider.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IVirtualWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IVirtualWebView.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IVirtualWebView@T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IVirtualWebView@T.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IVirtualWebViewControlCallBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IVirtualWebViewControlCallBack.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IVirtualWebViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IVirtualWebViewProvider.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IWebViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IWebViewControl.cs -------------------------------------------------------------------------------- /Source/WebView.Core/IWebViewEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/IWebViewEventHandler.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Ioc/WebViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Ioc/WebViewLocator.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Models/WebResourceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Models/WebResourceRequest.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Models/WebResourceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Models/WebResourceResponse.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Models/WebScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Models/WebScheme.cs -------------------------------------------------------------------------------- /Source/WebView.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/WebView.Core/WebView.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/Source/WebView.Core/WebView.Core.csproj -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicroSugarDeveloperOrg/Webviews.Avalonia/HEAD/global.json --------------------------------------------------------------------------------