Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- MetaDiff v0.2 https://github.com/WalkingCat/MetaDiff
- new files: .\18252\amd64_microsoft-windows-runtime-metadata_31bf3856ad364e35_10.0.18252.1000_none_0f5a3eb84f8f2f06\*
- old files: .\18247\amd64_microsoft-windows-runtime-metadata_31bf3856ad364e35_10.0.18247.1001_none_e49cae05af369665\*
- diff legends: +: added, -: removed, *: changed, |: type member changed
- * windows.applicationmodel.winmd
- | public class Windows.ApplicationModel.Resources.Core.ResourceCandidate {
- + public ResourceCandidateKind Kind { get; }
- | }
- + public enum Windows.ApplicationModel.Resources.Core.ResourceCandidateKind {
- + String = 0,
- + File = 1,
- + EmbeddedData = 2,
- + }
- * windows.globalization.winmd
- + public class Windows.Globalization.CurrencyAmount {
- + public string Amount { get; }
- + public string Currency { get; }
- + public CurrencyAmount( string amount, string currency );
- + }
- * windows.networking.winmd
- | public enum Windows.Networking.Connectivity.NetworkAuthenticationType {
- + Wpa3 = 10,
- + Wpa3Sae = 11,
- | }
- * windows.ui.winmd
- + public class Windows.UI.Input.AttachableInputObject {
- + public void Close();
- + }
- + public class Windows.UI.Input.InputActivationListener : Windows.UI.Input.AttachableInputObject {
- + public InputActivationState State { get; }
- + TypedEventHandler<InputActivationListener, InputActivationListenerActivationChangedEventArgs> InputActivationChanged;
- + }
- + public class Windows.UI.Input.InputActivationListenerActivationChangedEventArgs {
- + public InputActivationState State { get; }
- + }
- + public enum Windows.UI.Input.InputActivationState {
- + None = 0,
- + Deactivated = 1,
- + ActivatedNotForeground = 2,
- + ActivatedInForeground = 3,
- + }
- + public class Windows.UI.Input.Preview.InputActivationListenerPreview {
- + public static InputActivationListener CreateForApplicationWindow( ApplicationWindow window );
- + }
- | public class Windows.UI.ViewManagement.ApplicationView {
- + public ApplicationWindowPresenterKind AppliedPresenterKind { get; }
- + public string PersistedStateName { get; }
- + public bool TrySetPersistedStateName( string value );
- + public static IAsyncOperation<bool> ClearPersistedStateAsync( string value );
- + public static IAsyncOperation<bool> ClearAllPersistedStateAsync();
- | }
- + public class Windows.UI.WindowManagement.ApplicationWindow {
- + public bool CloseOnShowStateHidden { get; set; }
- + public DispatcherQueue DispatcherQueue { get; }
- + public int Id { get; }
- + public ApplicationWindowKind Kind { get; }
- + public ApplicationWindowShowState ShowState { get; }
- + public IAsyncAction CloseAsync();
- + public IAsyncAction HideAsync();
- + public IAsyncOperation<bool> TryShowAsync();
- + public static ApplicationWindow FromId( int id );
- + public static IAsyncOperation<ApplicationWindow> CreateAsync( ApplicationWindowKind kind );
- + TypedEventHandler<ApplicationWindow, ApplicationWindowClosedEventArgs> Closed;
- + TypedEventHandler<ApplicationWindow, ApplicationWindowShowStateChangedEventArgs> ShowStateChanged;
- + }
- + public class Windows.UI.WindowManagement.ApplicationWindowClosedEventArgs {
- + }
- + public class Windows.UI.WindowManagement.ApplicationWindowExperience {
- + public string Title { get; set; }
- + }
- + public class Windows.UI.WindowManagement.ApplicationWindowExperienceChangedEventArgs {
- + }
- + public enum Windows.UI.WindowManagement.ApplicationWindowKind {
- + Companion = 0,
- + Flyout = 1,
- + }
- + public enum Windows.UI.WindowManagement.ApplicationWindowPresenterKind {
- + Default = 0,
- + FullScreen = 1,
- + Projection = 2,
- + CompactOverlay = 3,
- + Maximized = 4,
- + }
- + public enum Windows.UI.WindowManagement.ApplicationWindowShowState {
- + Hidden = 0,
- + Shown = 1,
- + }
- + public class Windows.UI.WindowManagement.ApplicationWindowShowStateChangedEventArgs {
- + public ApplicationWindowShowStateChangedReason Reason { get; }
- + }
- + public enum Windows.UI.WindowManagement.ApplicationWindowShowStateChangedReason {
- + AppInitiated = 0,
- + UserInitiated = 1,
- + Other = 2,
- + }
- + public enum Windows.UI.WindowManagement.BoundsPreference {
- + Default = 0,
- + SizeFirst = 1,
- + PositionFirst = 2,
- + }
- + public class Windows.UI.WindowManagement.CompactOverlayPresenter {
- + public ApplicationWindowPresenterKind Kind { get; }
- + public static bool IsAvailable( int viewId );
- + public static IAsyncOperation<bool> TryApplyAsync( int viewId );
- + public static IAsyncOperation<bool> RevertAsync( int viewId );
- + }
- + public class Windows.UI.WindowManagement.CompanionExperience : Windows.UI.WindowManagement.ApplicationWindowExperience {
- + public ApplicationWindowPresenterKind AppliedPresenterKind { get; }
- + public ApplicationViewTitleBar TitleBar { get; }
- + public static CompanionExperience GetForWindow( ApplicationWindow applicationWindow );
- + }
- + public class Windows.UI.WindowManagement.DisplayRegion {
- + public IVectorView<string> DisplayMonitorIds { get; }
- + public int Id { get; }
- + public bool IsVisible { get; }
- + public Point Offset { get; }
- + public Size Size { get; }
- + public WindowingEnvironment WindowingEnvironment { get; }
- + public static IVectorView<DisplayRegion> GetRegionsForCurrentView();
- + TypedEventHandler<DisplayRegion, object> Changed;
- + }
- + public class Windows.UI.WindowManagement.FlyoutExperience : Windows.UI.WindowManagement.ApplicationWindowExperience {
- + public bool IsPinnable { get; set; }
- + public ApplicationViewTitleBar TitleBar { get; }
- + public static FlyoutExperience GetForWindow( ApplicationWindow applicationWindow );
- + }
- + public class Windows.UI.WindowManagement.FullScreenPresenter {
- + public ApplicationWindowPresenterKind Kind { get; }
- + public static bool IsAvailable( int viewId );
- + public static IAsyncOperation<bool> TryApplyAsync( int viewId );
- + public static IAsyncOperation<bool> TryApplyExclusiveAsync( int viewId );
- + public static IAsyncOperation<bool> RevertAsync( int viewId );
- + }
- + public interface Windows.UI.WindowManagement.IPositioner {
- + public Size GetDefaultFullScreenSize( DisplayRegion displayRegion );
- + public Size GetFullScreenSize( int viewId );
- + public void SetWindowingEnvironment( int viewId );
- + }
- + public class Windows.UI.WindowManagement.MaximizedPresenter {
- + public ApplicationWindowPresenterKind Kind { get; }
- + public static bool IsAvailable( int viewId );
- + public static IAsyncOperation<bool> TryApplyAsync( int viewId );
- + public static IAsyncOperation<bool> RevertAsync( int viewId );
- + }
- + public class Windows.UI.WindowManagement.OverlappedPositioner {
- + public void SetDisplayRegion( int viewId, DisplayRegion displayRegion );
- + public void SetViewRelativePosition( int viewId, int anchorViewId, Point offset, ViewRelativePositionPreferences viewRelativePositionPreferences );
- + public void SetSize( int viewId, Size size );
- + public Size GetDefaultFullScreenSize( DisplayRegion displayRegion );
- + public Size GetFullScreenSize( int viewId );
- + public void SetWindowingEnvironment( int viewId );
- + }
- + public class Windows.UI.WindowManagement.ProjectionPresenter {
- + public ApplicationWindowPresenterKind Kind { get; }
- + public static bool IsAvailable( int viewId );
- + public static IAsyncOperation<bool> TryApplyAsync( int viewId, int anchorViewId );
- + public static IAsyncOperation<bool> RevertAsync( int viewId, int anchorViewId );
- + }
- + public class Windows.UI.WindowManagement.TilingPositioner {
- + public void SetDisplayRegion( int viewId, DisplayRegion displayRegion );
- + public void SetDisplayRegions( int viewId, IIterable<DisplayRegion> displayRegions );
- + public Size GetDefaultFullScreenSize( DisplayRegion displayRegion );
- + public Size GetFullScreenSize( int viewId );
- + public void SetWindowingEnvironment( int viewId );
- + }
- + public class Windows.UI.WindowManagement.ViewRelativePositionPreferences {
- + public bool KeepAspectRatio { get; set; }
- + public bool IncludeWindowDecorations { get; set; }
- + public bool ConstrainToSingleDisplayRegion { get; set; }
- + public BoundsPreference BoundsPreference { get; set; }
- + public ViewRelativePositionPreferences();
- + }
- + public enum Windows.UI.WindowManagement.WindowPositionerKind {
- + Tiling = 0,
- + Overlapped = 1,
- + Holographic = 2,
- + }
- + public class Windows.UI.WindowManagement.WindowingEnvironment {
- + public IObservableVector<DisplayRegion> DisplayRegions { get; }
- + public int Id { get; }
- + public bool IsEnabled { get; }
- + public WindowingEnvironmentKind Kind { get; }
- + public IAsyncOperation<bool> TryApplyChangesAsync();
- + public IAsyncOperation<bool> TryApplyChangesAsync( int viewId );
- + public void RevertPendingConfiguration( int viewId );
- + public IPositioner TryGetDefaultPositioner();
- + public static IAsyncOperation<IVectorView<WindowingEnvironment>> FindAllAsync();
- + public static IAsyncOperation<IVectorView<WindowingEnvironment>> FindAllWithKindAsync( WindowingEnvironmentKind windowingEnvironmentKind );
- + public static WindowingEnvironment GetForCurrentView();
- + TypedEventHandler<WindowingEnvironment, WindowingEnvironmentChangedEventArgs> Changed;
- + EventHandler<WindowingEnvironmentAddedEventArgs> Added;
- + EventHandler<WindowingEnvironmentRemovedEventArgs> Removed;
- + }
- + public class Windows.UI.WindowManagement.WindowingEnvironmentAddedEventArgs {
- + public WindowingEnvironment WindowingEnvironment { get; }
- + }
- + public class Windows.UI.WindowManagement.WindowingEnvironmentChangedEventArgs {
- + }
- + public enum Windows.UI.WindowManagement.WindowingEnvironmentKind {
- + Unknown = 0,
- + Tiling = 1,
- + Overlapped = 2,
- + Holographic = 3,
- + }
- + public class Windows.UI.WindowManagement.WindowingEnvironmentRemovedEventArgs {
- + public WindowingEnvironment WindowingEnvironment { get; }
- + }
- * windows.ui.xaml.winmd
- | public class Windows.UI.Xaml.UIElement : Windows.UI.Xaml.DependencyObject {
- + public Shadow Shadow { get; set; }
- + public DependencyProperty ShadowProperty { get; }
- | }
- + public class Windows.UI.Xaml.UIElementWeakCollection {
- + public uint Size { get; }
- + public UIElementWeakCollection();
- + public UIElement GetAt( uint index );
- + public IVectorView<UIElement> GetView();
- + public bool IndexOf( UIElement value, ref uint index );
- + public void SetAt( uint index, UIElement value );
- + public void InsertAt( uint index, UIElement value );
- + public void RemoveAt( uint index );
- + public void Append( UIElement value );
- + public void RemoveAtEnd();
- + public void Clear();
- + public uint GetMany( uint startIndex, UIElement[] items );
- + public void ReplaceAll( UIElement[] items );
- + public IIterator<UIElement> First();
- + }
- | public class Windows.UI.Xaml.Hosting.ElementCompositionPreview {
- + public static void SetApplicationWindowContent( ApplicationWindow applicationWindow, UIElement xamlContent );
- + public static UIElement GetApplicationWindowContent( ApplicationWindow applicationWindow );
- | }
- + public class Windows.UI.Xaml.Media.Shadow : Windows.UI.Xaml.DependencyObject {
- + }
- + public class Windows.UI.Xaml.Media.ThemeShadow : Windows.UI.Xaml.Media.Shadow {
- + public UIElementWeakCollection Receivers { get; }
- + public ThemeShadow();
- + }
- | public class Windows.UI.Xaml.Media.Animation.GravityConnectedAnimationConfiguration : Windows.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration {
- + public bool IsShadowEnabled { get; set; }
- | }
Advertisement
Add Comment
Please, Sign In to add comment