-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowsDisplayAPI.xml
2045 lines (2045 loc) · 105 KB
/
WindowsDisplayAPI.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>WindowsDisplayAPI</name>
</assembly>
<members>
<member name="T:WindowsDisplayAPI.Device">
<summary>
Represents a Windows Video Device including Display Devices and Video Controllers
</summary>
</member>
<member name="M:WindowsDisplayAPI.Device.#ctor(System.String,System.String,System.String)">
<summary>
Creates a new Device
</summary>
<param name="devicePath">The device path</param>
<param name="deviceName">The device name</param>
<param name="deviceKey">The device driver registry key</param>
</member>
<member name="P:WindowsDisplayAPI.Device.DeviceKey">
<summary>
Gets the registry address of the device driver and configuration
</summary>
</member>
<member name="P:WindowsDisplayAPI.Device.DeviceName">
<summary>
Gets the Windows device name
</summary>
</member>
<member name="P:WindowsDisplayAPI.Device.DevicePath">
<summary>
Gets the Windows device path
</summary>
</member>
<member name="M:WindowsDisplayAPI.Device.ToString">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.Device.OpenDeviceKey">
<summary>
Opens the registry key at the address specified by the DeviceKey property
</summary>
<returns>A RegistryKey instance for successful call, otherwise null</returns>
<exception cref="T:WindowsDisplayAPI.Exceptions.InvalidRegistryAddressException">Registry address is invalid or unknown.</exception>
</member>
<member name="M:WindowsDisplayAPI.Device.OpenDevicePnPKey">
<summary>
Opens the registry key of the Windows PnP manager for this device
</summary>
<returns>A RegistryKey instance for successful call, otherwise null</returns>
</member>
<member name="T:WindowsDisplayAPI.Display">
<summary>
Represents a Windows Attached Display Device
</summary>
</member>
<member name="M:WindowsDisplayAPI.Display.#ctor(WindowsDisplayAPI.DisplayDevice)">
<summary>
Creates a new Display
</summary>
<param name="device">The DisplayDevice instance to copy information from</param>
</member>
<member name="P:WindowsDisplayAPI.Display.CurrentSetting">
<summary>
Gets a DisplaySetting object representing the display current settings
</summary>
</member>
<member name="P:WindowsDisplayAPI.Display.DisplayFullName">
<inheritdoc />
</member>
<member name="P:WindowsDisplayAPI.Display.DisplayName">
<inheritdoc />
</member>
<member name="P:WindowsDisplayAPI.Display.IsAvailable">
<inheritdoc />
</member>
<member name="P:WindowsDisplayAPI.Display.IsGDIPrimary">
<summary>
Gets a boolean value indicating if this display device is the Windows GDI primary device
</summary>
</member>
<member name="P:WindowsDisplayAPI.Display.IsValid">
<inheritdoc />
</member>
<member name="P:WindowsDisplayAPI.Display.SavedSetting">
<summary>
Gets a DisplaySettings object representing this display saved settings
</summary>
</member>
<member name="M:WindowsDisplayAPI.Display.GetDisplays">
<summary>
Returns a list of all attached displays on this machine
</summary>
<returns>An enumerable list of Displays</returns>
</member>
<member name="M:WindowsDisplayAPI.Display.ToString">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.Display.Disable(System.Boolean)">
<summary>
Disables and detaches this display device
</summary>
<param name="apply">Indicating if the changes should be applied immediately, recommended value is false</param>
</member>
<member name="M:WindowsDisplayAPI.Display.GetScreen">
<summary>
Returns the corresponding Screen instance for this display device
</summary>
<returns>A Screen object</returns>
</member>
<member name="M:WindowsDisplayAPI.Display.SetSettings(WindowsDisplayAPI.DisplaySetting,System.Boolean)">
<summary>
Changes the display device settings to a new DisplaySettings object
</summary>
<param name="displaySetting">The display settings that should be applied</param>
<param name="apply">Indicating if the changes should be applied immediately, recommended value is false</param>
</member>
<member name="M:WindowsDisplayAPI.Display.ToUnAttachedDisplay">
<summary>
Returns the corresponding UnAttachedDisplay device for this display. Only valid when this instance is invalidated
due to display detachment.
</summary>
<returns></returns>
</member>
<member name="T:WindowsDisplayAPI.DisplayAdapter">
<summary>
Represents a Windows Video Controller Display Adapter Device
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayAdapter.#ctor(System.String,System.String,System.String)">
<summary>
Creates a new DisplayAdapter
</summary>
<param name="devicePath">The device path</param>
<param name="deviceName">The device name</param>
<param name="deviceKey">The device driver registry key</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayAdapter.GetDisplayAdapters">
<summary>
Returns a list of all display adapters on this machine
</summary>
<returns>An enumerable list of DisplayAdapters</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayAdapter.GetDisplayDevices">
<summary>
Returns a list of all display devices connected to this adapter
</summary>
<returns>An enumerable list of DisplayDevices</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayAdapter.ToPathDisplayAdapter">
<summary>
Returns the corresponding PathDisplayAdapter instance
</summary>
<returns>An instance of PathDisplayAdapter, or null</returns>
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathDisplaySource">
<summary>
Represents a display path source
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter,System.UInt32)">
<summary>
Creates a new PathDisplaySource
</summary>
<param name="adapter">Display adapter</param>
<param name="sourceId">Display source identification</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.Adapter">
<summary>
Gets the path display adapter
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.DisplayName">
<summary>
Gets the display name
</summary>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.SourceId">
<summary>
Gets the zero based display identification
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.Equals(WindowsDisplayAPI.DisplayConfig.PathDisplaySource)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.GetDisplaySources">
<summary>
Retrieving a list of all display sources from the currently active and inactive paths
</summary>
<returns>An array of PathDisplaySource instances</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.op_Equality(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,WindowsDisplayAPI.DisplayConfig.PathDisplaySource)">
<summary>
Checks for equality of two PathDisplaySource instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.op_Inequality(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,WindowsDisplayAPI.DisplayConfig.PathDisplaySource)">
<summary>
Checks for inequality of two PathDisplaySource instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are not equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.GetHashCode">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.ToString">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplaySource.ToDisplayDevices">
<summary>
Returns the corresponding DisplayDevice instances
</summary>
<returns>An enumerable list of DisplayDevices</returns>
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget">
<summary>
Represents a display path target (Display Device)
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter,System.UInt32)">
<summary>
Creates a new PathDisplayTarget
</summary>
<param name="adapter">Display adapter</param>
<param name="targetId">Display target identification</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.Adapter">
<summary>
Gets the path display adapter
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.BootPersistence">
<summary>
Sets the display boot persistence for the target display device
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException"></exception>
<exception cref="T:System.ComponentModel.Win32Exception"></exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.ConnectorInstance">
<summary>
Gets the one-based instance number of this particular target only when the adapter has multiple targets of this
type. The connector instance is a consecutive one-based number that is unique within each adapter. If this is the
only target of this type on the adapter, this value is zero.
</summary>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.DevicePath">
<summary>
Gets the display device path
</summary>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.EDIDManufactureCode">
<summary>
Gets the display manufacture 3 character code from the display EDID manufacture identification
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
<exception cref="T:WindowsDisplayAPI.Exceptions.InvalidEDIDInformation">The EDID information does not contain this value</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.EDIDManufactureId">
<summary>
Gets the display manufacture identification from the display EDID information
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
<exception cref="T:WindowsDisplayAPI.Exceptions.InvalidEDIDInformation">The EDID information does not contain this value</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.EDIDProductCode">
<summary>
Gets the display product identification from the display EDID information
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
<exception cref="T:WindowsDisplayAPI.Exceptions.InvalidEDIDInformation">The EDID information does not contain this value</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.FriendlyName">
<summary>
Gets the display friendly name from the display EDID information
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.IsAvailable">
<summary>
Gets a boolean value indicating the device availability
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.PreferredResolution">
<summary>
Gets the display device preferred resolution
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.PreferredSignalMode">
<summary>
Gets the display device preferred signal information
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.TargetId">
<summary>
Gets the target identification
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.VirtualResolutionSupport">
<summary>
Gets or sets the device virtual resolution support
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.TargetNotAvailableException">The target is not available</exception>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.Equals(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.GetDisplayTargets">
<summary>
Retrieving a list of all display targets from the currently active and inactive paths
</summary>
<returns>An array of PathDisplayTarget instances</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.op_Equality(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,WindowsDisplayAPI.DisplayConfig.PathDisplayTarget)">
<summary>
Checks for equality of two PathDisplayTarget instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.op_Inequality(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,WindowsDisplayAPI.DisplayConfig.PathDisplayTarget)">
<summary>
Checks for inequality of two PathDisplayTarget instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are not equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.GetHashCode">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.ToString">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.OpenDevicePnPKey">
<summary>
Opens the registry key of the Windows PnP manager for this display target
</summary>
<returns>A RegistryKey instance for successful call, otherwise null</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayTarget.ToDisplayDevice">
<summary>
Returns the corresponding DisplayDevice instance
</summary>
<returns>An instance of DisplayDevice, or null</returns>
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage">
<summary>
Contains information about the target desktop image
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.#ctor(System.Drawing.Size,System.Drawing.Rectangle,System.Drawing.Rectangle)">
<summary>
Creates a new PathTargetDesktopImage
</summary>
<param name="monitorSurfaceSize">Size of the VidPn source surface that is being displayed on the monitor</param>
<param name="imageRegion">
Where the desktop image will be positioned within monitor surface size. Region must be
completely inside the bounds of the monitor surface size.
</param>
<param name="imageClip">
Which part of the desktop image for this clone group will be displayed on this path. This
currently must be set to the desktop size.
</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.ImageClip">
<summary>
Gets part of the desktop image for this clone group that will be displayed on this path. This currently must be set
to the desktop size.
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.ImageRegion">
<summary>
Gets the part that the desktop image will be positioned within monitor surface size. Region must be completely
inside the bounds of the monitor surface size.
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.MonitorSurfaceSize">
<summary>
Gets the size of the VidPn source surface that is being displayed on the monitor
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.Equals(WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.op_Equality(WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage,WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage)">
<summary>
Checks for equality of two PathTargetDesktopImage instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.op_Inequality(WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage,WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage)">
<summary>
Checks for inequality of two PathTargetDesktopImage instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are not equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.GetHashCode">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage.ToString">
<inheritdoc />
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter">
<summary>
Reresents a path display adapter
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.#ctor(WindowsDisplayAPI.Native.Structures.LUID)">
<summary>
Creates a new PathDisplayAdapter
</summary>
<param name="adapterId">The adapter localally unique identification</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.AdapterId">
<summary>
Gets the display adapter local identification LUID
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.DevicePath">
<summary>
Gets the display adapter device path
</summary>
<exception cref="T:System.ComponentModel.Win32Exception">Error code can be retrieved from Win32Exception.NativeErrorCode property</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.IsInvalid">
<summary>
Gets a boolean value indicating the instance validity
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.Equals(WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.GetAdapters">
<summary>
Retrieving a list of all adapters from the currently active and inactive paths
</summary>
<returns>An array of PathDisplayAdapter instances</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.op_Equality(WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter,WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter)">
<summary>
Checks for equality of two PathDisplayAdapter instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.op_Inequality(WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter,WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter)">
<summary>
Checks for inequality of two PathDisplayAdapter instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are not equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.GetHashCode">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.ToString">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.OpenDevicePnPKey">
<summary>
Opens the registry key of the Windows PnP manager for this display adapter
</summary>
<returns>A RegistryKey instance for successful call, otherwise null</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathDisplayAdapter.ToDisplayAdapter">
<summary>
Gets the corresponding DisplayAdapter instance
</summary>
<returns>An instance of DisplayAdapter, or null</returns>
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathInfo">
<summary>
Represents a path root information
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,System.Drawing.Point,System.Drawing.Size,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigPixelFormat)">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="position">The display position in desktop</param>
<param name="resolution">The display resolution</param>
<param name="pixelFormat">The display pixel format</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,System.Drawing.Point,System.Drawing.Size,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigPixelFormat,System.UInt32)">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="position">The display position in desktop</param>
<param name="resolution">The display resolution</param>
<param name="pixelFormat">The display pixel format</param>
<param name="cloneGroup">The display clone group, only valid for virtual aware paths</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,System.Drawing.Point,System.Drawing.Size,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigPixelFormat,WindowsDisplayAPI.DisplayConfig.PathTargetInfo[])">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="position">The display position in desktop</param>
<param name="resolution">The display resolution</param>
<param name="pixelFormat">The display pixel format</param>
<param name="pathTargetInfos">An array of target informations</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,System.Drawing.Point,System.Drawing.Size,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigPixelFormat,WindowsDisplayAPI.DisplayConfig.PathTargetInfo[],System.UInt32)">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="position">The display position in desktop</param>
<param name="resolution">The display resolution</param>
<param name="pixelFormat">The display pixel format</param>
<param name="pathTargetInfos">An array of target informations</param>
<param name="cloneGroup">The display clone group, only valid for virtual aware paths</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource)">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,System.UInt32)">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="cloneGroup">The display clone group, only valid for virtual aware paths</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,WindowsDisplayAPI.DisplayConfig.PathTargetInfo[])">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="pathTargetInfos">An array of target informations</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplaySource,WindowsDisplayAPI.DisplayConfig.PathTargetInfo[],System.UInt32)">
<summary>
Creates a new PathInfo
</summary>
<param name="displaySource">The display source</param>
<param name="pathTargetInfos">An array of target informations</param>
<param name="cloneGroup">The display clone group, only valid for virtual aware paths</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.CloneGroupId">
<summary>
Gets a valid identifier used to show which clone group the path is a member of
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.NotACloneMemberException">This path is not a clone member</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.DisplaySource">
<summary>
Gets extra information about the representing display source
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.IsCloneMember">
<summary>
Gets a boolean value indicating if this path is a member of a clone group
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.IsGDIPrimary">
<summary>
Gets a boolean value indicating if this path is the primary GDI path
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.MissingModeException">Source mode information is missing</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.IsInUse">
<summary>
Gets a boolean value indicating if the source is in use by at least one active path
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.IsModeInformationAvailable">
<summary>
Gets a boolean value indicating if the source mode information is available
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.IsSupported">
<summary>
Gets a boolean value indicating the DisplayConfig (CCD API) availability on this system
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.IsVirtualModeSupported">
<summary>
Gets a boolean value indicating the virtual display mode support on this system
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.PixelFormat">
<summary>
Gets the specifies the pixel format of the source mode
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.MissingModeException">Source mode information is missing</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.Position">
<summary>
Gets the position in the desktop coordinate space of the upper-left corner of this source surface. The source
surface that is located at (0, 0) is always the primary source surface.
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.MissingModeException">Source mode information is missing</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.Resolution">
<summary>
Gets the size of the source mode
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.MissingModeException">Source mode information is missing</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathInfo.TargetsInfo">
<summary>
Gets the list of target informations
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.ApplyPathInfos(System.Collections.Generic.IEnumerable{WindowsDisplayAPI.DisplayConfig.PathInfo},System.Boolean,System.Boolean,System.Boolean)">
<summary>
Applies an array of paths
</summary>
<param name="pathInfos">The array of paths</param>
<param name="allowChanges">true to allow changes and reordering of the provided paths, otherwise false</param>
<param name="saveToDatabase">true to save the paths to the persistence database if call succeed, otherwise false</param>
<param name="forceModeEnumeration">true to force driver mode enumeration before applying the paths</param>
<exception cref="T:WindowsDisplayAPI.Exceptions.PathChangeException">Error in changing paths</exception>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.ApplyTopology(WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigTopologyId,System.Boolean)">
<summary>
Applies a saved topology
</summary>
<param name="topology">The topology identification to apply</param>
<param name="allowPersistence">true to allows persistence of the changes, otherwise false</param>
<exception cref="T:WindowsDisplayAPI.Exceptions.PathChangeException">Error in changing paths</exception>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.GetActivePaths(System.Boolean)">
<summary>
Retrieves the list of active paths
</summary>
<param name="virtualModeAware">true if the caller expects virtual mode settings, otherwise false</param>
<returns>An array of PathInfos</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.GetAllPaths(System.Boolean)">
<summary>
Retrieves the list of all paths, active or inactive
</summary>
<param name="virtualModeAware">true if the caller expects virtual mode settings, otherwise false</param>
<returns>An array of PathInfos</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.GetCurrentDatabasePaths">
<summary>
Retrieves the list of currently active topology paths
</summary>
<returns>An array of PathInfos</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.GetCurrentTopology">
<summary>
Gets the current active topology identification
</summary>
<returns>The topology identification</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.ValidatePathInfos(System.Collections.Generic.IEnumerable{WindowsDisplayAPI.DisplayConfig.PathInfo},System.Boolean)">
<summary>
Validates an array of paths before applying
</summary>
<param name="pathInfos">The array of paths</param>
<param name="allowChanges">true to allow changes and reordering of the provided paths, otherwise false</param>
<returns>true if the provided paths are valid, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.ValidateTopology(WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigTopologyId)">
<summary>
Validates a topology before applying
</summary>
<param name="topology">The topology identification</param>
<returns>true if topology is applicable, otherwise false</returns>
<exception cref="T:System.ArgumentOutOfRangeException"></exception>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathInfo.ToString">
<inheritdoc />
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathTargetInfo">
<summary>
Represents a path and its target
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,System.Boolean)">
<summary>
Creates a new PathTargetInfo
</summary>
<param name="displayTarget">The display target device</param>
<param name="isVirtualModeSupported">A boolean value indicating the target virtual mode support</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,System.UInt64,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigScanLineOrdering,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigRotation,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigScaling,System.Boolean)">
<summary>
Creates a new PathTargetInfo
</summary>
<param name="displayTarget">The display target device</param>
<param name="frequencyInMillihertz">Display frequency in millihertz</param>
<param name="scanLineOrdering">Display scan line ordering</param>
<param name="rotation">Display rotation</param>
<param name="scaling">Display scaling</param>
<param name="isVirtualModeSupported">A boolean value indicating the target virtual mode support</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo,System.Boolean)">
<summary>
Creates a new PathTargetInfo
</summary>
<param name="displayTarget">The display target device</param>
<param name="signalInfo">The display signal information</param>
<param name="isVirtualModeSupported">A boolean value indicating the target virtual mode support</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigRotation,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigScaling,System.Boolean)">
<summary>
Creates a new PathTargetInfo
</summary>
<param name="displayTarget">The display target device</param>
<param name="signalInfo">The display signal information</param>
<param name="rotation">Display rotation</param>
<param name="scaling">Display scaling</param>
<param name="isVirtualModeSupported">A boolean value indicating the target virtual mode support</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo,WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage,System.Boolean)">
<summary>
Creates a new PathTargetInfo
</summary>
<param name="displayTarget">The display target device</param>
<param name="signalInfo">The display signal information</param>
<param name="desktopImage">The display desktop image information</param>
<param name="isVirtualModeSupported">A boolean value indicating the target virtual mode support</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.#ctor(WindowsDisplayAPI.DisplayConfig.PathDisplayTarget,WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo,WindowsDisplayAPI.DisplayConfig.PathTargetDesktopImage,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigRotation,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigScaling,System.Boolean)">
<summary>
Creates a new PathTargetInfo
</summary>
<param name="displayTarget">The display target device</param>
<param name="signalInfo">The display signal information</param>
<param name="desktopImage">The display desktop image information</param>
<param name="rotation">Display rotation</param>
<param name="scaling">Display scaling</param>
<param name="isVirtualModeSupported">A boolean value indicating the target virtual mode support</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.DesktopImage">
<summary>
Gets an instance of PathTargetDesktopImage containing information about this target desktop image
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.MissingModeException">Target mode information is missing</exception>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.DisplayTarget">
<summary>
Gets extra information about the representing display target device
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.ForcedBootAvailability">
<summary>
Gets a boolean value indicating that the output is currently being forced in a boot-persistent manner
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.ForcedPathAvailability">
<summary>
Gets a boolean value indicating that the output is currently being forced in a path-persistent manner
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.ForcedSystemAvailability">
<summary>
Gets a boolean value indicating that the output is currently being forced in a nonpersistent manner
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.FrequencyInMillihertz">
<summary>
Gets a value that specifies the refresh rate of the target
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.IsCurrentlyInUse">
<summary>
Gets a boolean value indicating if the target is in use on an active path
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.IsDesktopImageInformationAvailable">
<summary>
Gets a boolean value indicating the presence of the desktop image information
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.IsForcible">
<summary>
Gets a boolean value indicating that the output can be forced on this target even if a monitor is not detected
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.IsPathActive">
<summary>
Gets a boolean value indicating if this path is or should be active
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.IsSignalInformationAvailable">
<summary>
Gets a boolean value indicating the presence of the signal information
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.IsVirtualModeSupportedByPath">
<summary>
Gets a boolean value that indicates if the path supports virtual mode
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.OutputTechnology">
<summary>
Gets the type of the display device connection
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.Rotation">
<summary>
Gets the rotation of the target
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.Scaling">
<summary>
Gets the value that specifies how the source image is scaled to the target
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.ScanLineOrdering">
<summary>
Gets the value that specifies the scan-line ordering of the output on the target
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.SignalInfo">
<summary>
Gets the target device signal information
</summary>
<exception cref="T:WindowsDisplayAPI.Exceptions.MissingModeException">Target mode information is missing</exception>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetInfo.ToString">
<inheritdoc />
</member>
<member name="T:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo">
<summary>
Contains information about the target signal info
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.#ctor(System.Drawing.Size,System.Drawing.Size,System.UInt64,WindowsDisplayAPI.Native.DisplayConfig.DisplayConfigScanLineOrdering,WindowsDisplayAPI.Native.DisplayConfig.VideoSignalStandard,System.UInt16)">
<summary>
Creates a new PathTargetSignalInfo
</summary>
<param name="activeSize">Specifies the width and height (in pixels) of the active portion of the video signal.</param>
<param name="totalSize">Specifies the width and height (in pixels) of the entire video signal.</param>
<param name="verticalSyncFrequencyInMillihertz">Vertical synchronization frequency.</param>
<param name="scanLineOrdering">The scan-line ordering (for example, progressive or interlaced) of the video signal.</param>
<param name="videoStandard">
The video standard (if any) that defines the video signal. Supported by WDDM 1.3 and later
display miniport drivers running on Windows 8.1 and later.
</param>
<param name="verticalSyncFrequencyDivider">
The ratio of the VSync rate of a monitor that displays through a Miracast
connected session to the VSync rate of the Miracast sink. The ratio of the VSync rate of a monitor that displays
through a Miracast connected session to the VSync rate of the Miracast sink. Supported by WDDM 1.3 and later
display miniport drivers running on Windows 8.1 and later.
</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.#ctor(WindowsDisplayAPI.DisplayPossibleSetting,System.Drawing.Size)">
<summary>
Creates a new PathTargetSignalInfo
</summary>
<param name="displaySetting">A possible display settings</param>
<param name="totalSignalSize">Total signal size</param>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.ActiveSize">
<summary>
Gets the width and height (in pixels) of the active portion of the video signal
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.HorizontalSyncFrequencyInMillihertz">
<summary>
Gets the horizontal synchronization frequency
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.PixelRate">
<summary>
Gets the pixel clock rate
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.ScanLineOrdering">
<summary>
Gets the scan-line ordering (for example, progressive or interlaced) of the video signal
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.TotalSize">
<summary>
Gets the width and height (in pixels) of the entire video signal
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.VerticalSyncFrequencyDivider">
<summary>
Gets the ratio of the VSync rate of a monitor that displays through a Miracast connected session to the VSync rate
of the Miracast sink. The ratio of the VSync rate of a monitor that displays through a Miracast connected session
to the VSync rate of the Miracast sink. Supported by WDDM 1.3 and later display miniport drivers running on Windows
8.1 and later
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.VerticalSyncFrequencyInMillihertz">
<summary>
Gets the vertical synchronization frequency
</summary>
</member>
<member name="P:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.VideoStandard">
<summary>
Gets the video standard (if any) that defines the video signal. Supported by WDDM 1.3 and later display miniport
drivers running on Windows 8.1 and later
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.Equals(WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.op_Equality(WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo,WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo)">
<summary>
Checks for equality of two PathTargetSignalInfo instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.op_Inequality(WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo,WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo)">
<summary>
Checks for inequality of two PathTargetSignalInfo instances
</summary>
<param name="left">The first instance</param>
<param name="right">The second instance</param>
<returns>true if both instaces are not equal, otherwise false</returns>
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.GetHashCode">
<inheritdoc />
</member>
<member name="M:WindowsDisplayAPI.DisplayConfig.PathTargetSignalInfo.ToString">
<inheritdoc />
</member>
<member name="T:WindowsDisplayAPI.DisplayDevice">
<summary>
Represents a Windows Display Device
</summary>
</member>
<member name="M:WindowsDisplayAPI.DisplayDevice.#ctor(System.String,System.String,System.String)">
<summary>
Creates a new DisplayDevice
</summary>
<param name="devicePath">The device path</param>
<param name="deviceName">The device name</param>
<param name="deviceKey">The device driver registry key</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayDevice.#ctor(System.String,System.String,System.String,WindowsDisplayAPI.DisplayAdapter,System.Boolean,System.Boolean)">
<summary>
Creates a new DisplayDevice
</summary>
<param name="devicePath">The device path</param>
<param name="deviceName">The device name</param>
<param name="deviceKey">The device driver registry key</param>
<param name="adapter">The device parent DisplayAdapter</param>
<param name="isAvailable">true if the device is attached, otherwise false</param>
<param name="isValid">true if this instance is valid, otherwise false</param>
</member>
<member name="M:WindowsDisplayAPI.DisplayDevice.#ctor(System.String,System.String,System.String,WindowsDisplayAPI.DisplayAdapter,System.String,System.String,System.Boolean,System.Boolean)">
<summary>
Creates a new DisplayDevice
</summary>
<param name="devicePath">The device path</param>
<param name="deviceName">The device name</param>
<param name="deviceKey">The device driver registry key</param>
<param name="adapter">The device parent DisplayAdapter</param>
<param name="displayName">The device source display name</param>
<param name="displayFullName">The device target display name</param>
<param name="isAvailable">true if the device is attached, otherwise false</param>
<param name="isValid">true if this instance is valid, otherwise false</param>
</member>