-
Notifications
You must be signed in to change notification settings - Fork 264
/
AuthorizationManagementClient.xml
1101 lines (1101 loc) · 77.6 KB
/
AuthorizationManagementClient.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
<Type Name="AuthorizationManagementClient" FullName="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient">
<TypeSignature Language="C#" Value="public class AuthorizationManagementClient : Hyak.Common.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient>, IDisposable, Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient" FrameworkAlternate="azure-dotnet" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AuthorizationManagementClient extends Hyak.Common.ServiceClient`1<class Microsoft.Azure.Management.Authorization.AuthorizationManagementClient> implements class Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient, class System.IDisposable" FrameworkAlternate="azure-dotnet" />
<TypeSignature Language="DocId" Value="T:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" />
<TypeSignature Language="VB.NET" Value="Public Class AuthorizationManagementClient
Inherits ServiceClient(Of AuthorizationManagementClient)
Implements IAuthorizationManagementClient, IDisposable" FrameworkAlternate="azure-dotnet" />
<TypeSignature Language="F#" Value="type AuthorizationManagementClient = class
 inherit ServiceClient<AuthorizationManagementClient>
 interface IAuthorizationManagementClient
 interface IDisposable" FrameworkAlternate="azure-dotnet" />
<TypeSignature Language="C#" Value="public class AuthorizationManagementClient : Microsoft.Rest.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient>, IDisposable, Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient, Microsoft.Rest.Azure.IAzureClient" FrameworkAlternate="azure-dotnet-legacy" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AuthorizationManagementClient extends Microsoft.Rest.ServiceClient`1<class Microsoft.Azure.Management.Authorization.AuthorizationManagementClient> implements class Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient, class Microsoft.Rest.Azure.IAzureClient, class System.IDisposable" FrameworkAlternate="azure-dotnet-legacy" />
<TypeSignature Language="VB.NET" Value="Public Class AuthorizationManagementClient
Inherits ServiceClient(Of AuthorizationManagementClient)
Implements IAuthorizationManagementClient, IAzureClient, IDisposable" FrameworkAlternate="azure-dotnet-legacy" />
<TypeSignature Language="F#" Value="type AuthorizationManagementClient = class
 inherit ServiceClient<AuthorizationManagementClient>
 interface IAuthorizationManagementClient
 interface IDisposable
 interface IAzureClient" FrameworkAlternate="azure-dotnet-legacy" />
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Hyak.Common.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient></BaseTypeName>
<BaseTypeName FrameworkAlternate="azure-dotnet-legacy">Microsoft.Rest.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient></BaseTypeName>
<BaseTypeArguments>
<BaseTypeArgument TypeParamName="!0">Microsoft.Azure.Management.Authorization.AuthorizationManagementClient</BaseTypeArgument>
</BaseTypeArguments>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="azure-dotnet-legacy">
<InterfaceName>Microsoft.Rest.Azure.IAzureClient</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>
Initializes a new instance of the AuthorizationManagementClient
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Azure.SubscriptionCloudCredentials credentials);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Azure.SubscriptionCloudCredentials credentials) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As SubscriptionCloudCredentials)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Azure.SubscriptionCloudCredentials -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient credentials" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Azure.SubscriptionCloudCredentials" Index="0" FrameworkAlternate="azure-dotnet" />
</Parameters>
<Docs>
<param name="credentials">
Required. Gets subscription credentials which uniquely identify
Microsoft Azure subscription. The subscription ID forms part of
the URI for every service call.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AuthorizationManagementClient (params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Protected Sub New (ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient handlers" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (System.Net.Http.HttpClient httpClient);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Net.Http.HttpClient httpClient) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Net.Http.HttpClient)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (httpClient As HttpClient)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : System.Net.Http.HttpClient -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient httpClient" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="httpClient" Type="System.Net.Http.HttpClient" Index="0" FrameworkAlternate="azure-dotnet" />
</Parameters>
<Docs>
<param name="httpClient">
The Http client
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Azure.SubscriptionCloudCredentials credentials, System.Net.Http.HttpClient httpClient);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Azure.SubscriptionCloudCredentials credentials, class System.Net.Http.HttpClient httpClient) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials,System.Net.Http.HttpClient)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As SubscriptionCloudCredentials, httpClient As HttpClient)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Azure.SubscriptionCloudCredentials * System.Net.Http.HttpClient -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (credentials, httpClient)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Azure.SubscriptionCloudCredentials" Index="0" FrameworkAlternate="azure-dotnet" />
<Parameter Name="httpClient" Type="System.Net.Http.HttpClient" Index="1" FrameworkAlternate="azure-dotnet" />
</Parameters>
<Docs>
<param name="credentials">
Required. Gets subscription credentials which uniquely identify
Microsoft Azure subscription. The subscription ID forms part of
the URI for every service call.
</param>
<param name="httpClient">
The Http client
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Azure.SubscriptionCloudCredentials credentials, Uri baseUri);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Azure.SubscriptionCloudCredentials credentials, class System.Uri baseUri) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials,System.Uri)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As SubscriptionCloudCredentials, baseUri As Uri)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Azure.SubscriptionCloudCredentials * Uri -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (credentials, baseUri)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Azure.SubscriptionCloudCredentials" Index="0" FrameworkAlternate="azure-dotnet" />
<Parameter Name="baseUri" Type="System.Uri" Index="1" FrameworkAlternate="azure-dotnet" />
</Parameters>
<Docs>
<param name="credentials">
Required. Gets subscription credentials which uniquely identify
Microsoft Azure subscription. The subscription ID forms part of
the URI for every service call.
</param>
<param name="baseUri">
Optional. Gets the URI used as the base for all cloud service
requests.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Rest.ServiceClientCredentials credentials, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Rest.ServiceClientCredentials,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As ServiceClientCredentials, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Rest.ServiceClientCredentials * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (credentials, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Rest.ServiceClientCredentials" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="credentials">
Required. Credentials needed for the client to connect to Azure.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AuthorizationManagementClient (System.Net.Http.HttpClient httpClient, bool disposeHttpClient);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Net.Http.HttpClient httpClient, bool disposeHttpClient) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Net.Http.HttpClient,System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Protected Sub New (httpClient As HttpClient, disposeHttpClient As Boolean)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : System.Net.Http.HttpClient * bool -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (httpClient, disposeHttpClient)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="httpClient" Type="System.Net.Http.HttpClient" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="disposeHttpClient" Type="System.Boolean" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
</Parameters>
<Docs>
<param name="httpClient">
HttpClient to be used
</param>
<param name="disposeHttpClient">
True: will dispose the provided httpClient on calling AuthorizationManagementClient.Dispose(). False: will not dispose provided httpClient</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AuthorizationManagementClient (System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Net.Http.HttpClientHandler rootHandler, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Net.Http.HttpClientHandler,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Protected Sub New (rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (rootHandler, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="rootHandler" Type="System.Net.Http.HttpClientHandler" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="rootHandler">
Optional. The http client handler used to handle http transport.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AuthorizationManagementClient (Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Uri baseUri, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Uri,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Protected Sub New (baseUri As Uri, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Uri * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (baseUri, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="baseUri" Type="System.Uri" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="baseUri">
Optional. The base URI of the service.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Azure.SubscriptionCloudCredentials credentials, Uri baseUri, System.Net.Http.HttpClient httpClient);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Azure.SubscriptionCloudCredentials credentials, class System.Uri baseUri, class System.Net.Http.HttpClient httpClient) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials,System.Uri,System.Net.Http.HttpClient)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As SubscriptionCloudCredentials, baseUri As Uri, httpClient As HttpClient)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Azure.SubscriptionCloudCredentials * Uri * System.Net.Http.HttpClient -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (credentials, baseUri, httpClient)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Azure.SubscriptionCloudCredentials" Index="0" FrameworkAlternate="azure-dotnet" />
<Parameter Name="baseUri" Type="System.Uri" Index="1" FrameworkAlternate="azure-dotnet" />
<Parameter Name="httpClient" Type="System.Net.Http.HttpClient" Index="2" FrameworkAlternate="azure-dotnet" />
</Parameters>
<Docs>
<param name="credentials">
Required. Gets subscription credentials which uniquely identify
Microsoft Azure subscription. The subscription ID forms part of
the URI for every service call.
</param>
<param name="baseUri">
Optional. Gets the URI used as the base for all cloud service
requests.
</param>
<param name="httpClient">
The Http client
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClient httpClient, bool disposeHttpClient);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Rest.ServiceClientCredentials credentials, class System.Net.Http.HttpClient httpClient, bool disposeHttpClient) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Rest.ServiceClientCredentials,System.Net.Http.HttpClient,System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As ServiceClientCredentials, httpClient As HttpClient, disposeHttpClient As Boolean)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Rest.ServiceClientCredentials * System.Net.Http.HttpClient * bool -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (credentials, httpClient, disposeHttpClient)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Rest.ServiceClientCredentials" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="httpClient" Type="System.Net.Http.HttpClient" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="disposeHttpClient" Type="System.Boolean" Index="2" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
</Parameters>
<Docs>
<param name="credentials">
Required. Credentials needed for the client to connect to Azure.
</param>
<param name="httpClient">
HttpClient to be used
</param>
<param name="disposeHttpClient">
True: will dispose the provided httpClient on calling AuthorizationManagementClient.Dispose(). False: will not dispose provided httpClient</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Rest.ServiceClientCredentials credentials, class System.Net.Http.HttpClientHandler rootHandler, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(Microsoft.Rest.ServiceClientCredentials,System.Net.Http.HttpClientHandler,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Public Sub New (credentials As ServiceClientCredentials, rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Microsoft.Rest.ServiceClientCredentials * System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (credentials, rootHandler, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="credentials" Type="Microsoft.Rest.ServiceClientCredentials" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="rootHandler" Type="System.Net.Http.HttpClientHandler" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="2" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="credentials">
Required. Credentials needed for the client to connect to Azure.
</param>
<param name="rootHandler">
Optional. The http client handler used to handle http transport.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri baseUri, class Microsoft.Rest.ServiceClientCredentials credentials, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Uri,Microsoft.Rest.ServiceClientCredentials,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Public Sub New (baseUri As Uri, credentials As ServiceClientCredentials, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Uri * Microsoft.Rest.ServiceClientCredentials * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (baseUri, credentials, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="baseUri" Type="System.Uri" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="credentials" Type="Microsoft.Rest.ServiceClientCredentials" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="2" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="baseUri">
Optional. The base URI of the service.
</param>
<param name="credentials">
Required. Credentials needed for the client to connect to Azure.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AuthorizationManagementClient (Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Uri baseUri, class System.Net.Http.HttpClientHandler rootHandler, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Uri,System.Net.Http.HttpClientHandler,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Protected Sub New (baseUri As Uri, rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Uri * System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (baseUri, rootHandler, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="baseUri" Type="System.Uri" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="rootHandler" Type="System.Net.Http.HttpClientHandler" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="2" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="baseUri">
Optional. The base URI of the service.
</param>
<param name="rootHandler">
Optional. The http client handler used to handle http transport.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AuthorizationManagementClient (Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri baseUri, class Microsoft.Rest.ServiceClientCredentials credentials, class System.Net.Http.HttpClientHandler rootHandler, class System.Net.Http.DelegatingHandler[] handlers) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.#ctor(System.Uri,Microsoft.Rest.ServiceClientCredentials,System.Net.Http.HttpClientHandler,System.Net.Http.DelegatingHandler[])" />
<MemberSignature Language="VB.NET" Value="Public Sub New (baseUri As Uri, credentials As ServiceClientCredentials, rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient : Uri * Microsoft.Rest.ServiceClientCredentials * System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Authorization.AuthorizationManagementClient" Usage="new Microsoft.Azure.Management.Authorization.AuthorizationManagementClient (baseUri, credentials, rootHandler, handlers)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="baseUri" Type="System.Uri" Index="0" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="credentials" Type="Microsoft.Rest.ServiceClientCredentials" Index="1" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="rootHandler" Type="System.Net.Http.HttpClientHandler" Index="2" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy" />
<Parameter Name="handlers" Type="System.Net.Http.DelegatingHandler[]" Index="3" FrameworkAlternate="azure-dotnet-preview;azure-dotnet-legacy">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="baseUri">
Optional. The base URI of the service.
</param>
<param name="credentials">
Required. Credentials needed for the client to connect to Azure.
</param>
<param name="rootHandler">
Optional. The http client handler used to handle http transport.
</param>
<param name="handlers">
Optional. The delegating handlers to add to the http client pipeline.
</param>
<summary>
Initializes a new instance of the AuthorizationManagementClient class.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
Thrown when a required parameter is null
</exception>
</Docs>
</Member>
<Member MemberName="AcceptLanguage">
<MemberSignature Language="C#" Value="public string AcceptLanguage { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AcceptLanguage" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.AcceptLanguage" />
<MemberSignature Language="VB.NET" Value="Public Property AcceptLanguage As String" />
<MemberSignature Language="F#" Value="member this.AcceptLanguage : string with get, set" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.AcceptLanguage" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.AcceptLanguage</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
The preferred language for the response.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ApiVersion">
<MemberSignature Language="C#" Value="public string ApiVersion { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string ApiVersion" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ApiVersion" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ApiVersion As String" />
<MemberSignature Language="F#" Value="member this.ApiVersion : string" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ApiVersion" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.ApiVersion</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the API version.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="APIVersion">
<MemberSignature Language="C#" Value="public const string APIVersion;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string APIVersion" />
<MemberSignature Language="DocId" Value="F:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.APIVersion" />
<MemberSignature Language="VB.NET" Value="Public Const APIVersion As String " />
<MemberSignature Language="F#" Value="val mutable APIVersion : string" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.APIVersion" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BaseUri">
<MemberSignature Language="C#" Value="public Uri BaseUri { get; }" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Uri BaseUri" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.BaseUri" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property BaseUri As Uri" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="F#" Value="member this.BaseUri : Uri" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.BaseUri" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="C#" Value="public Uri BaseUri { get; set; }" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="VB.NET" Value="Public Property BaseUri As Uri" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="F#" Value="member this.BaseUri : Uri with get, set" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.BaseUri" FrameworkAlternate="azure-dotnet-legacy" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.BaseUri</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Docs>
<summary>
The base URI of the service.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ClassicAdministrators">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Management.Authorization.IClassicAdministratorOperations ClassicAdministrators { get; }" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IClassicAdministratorOperations ClassicAdministrators" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ClassicAdministrators" />
<MemberSignature Language="VB.NET" Value="Public Overridable ReadOnly Property ClassicAdministrators As IClassicAdministratorOperations" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="F#" Value="member this.ClassicAdministrators : Microsoft.Azure.Management.Authorization.IClassicAdministratorOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ClassicAdministrators" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IClassicAdministratorsOperations ClassicAdministrators { get; }" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IClassicAdministratorsOperations ClassicAdministrators" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ClassicAdministrators As IClassicAdministratorsOperations" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="F#" Value="member this.ClassicAdministrators : Microsoft.Azure.Management.Authorization.IClassicAdministratorsOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ClassicAdministrators" FrameworkAlternate="azure-dotnet-legacy" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember FrameworkAlternate="azure-dotnet">P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.ClassicAdministrators</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType FrameworkAlternate="azure-dotnet">Microsoft.Azure.Management.Authorization.IClassicAdministratorOperations</ReturnType>
<ReturnType FrameworkAlternate="azure-dotnet-legacy">Microsoft.Azure.Management.Authorization.IClassicAdministratorsOperations</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the IClassicAdministratorsOperations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Clone">
<MemberSignature Language="C#" Value="protected override void Clone (Hyak.Common.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient> client);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Clone(class Hyak.Common.ServiceClient`1<class Microsoft.Azure.Management.Authorization.AuthorizationManagementClient> client) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Clone(Hyak.Common.ServiceClient{Microsoft.Azure.Management.Authorization.AuthorizationManagementClient})" />
<MemberSignature Language="VB.NET" Value="Protected Overrides Sub Clone (client As ServiceClient(Of AuthorizationManagementClient))" />
<MemberSignature Language="F#" Value="override this.Clone : Hyak.Common.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient> -> unit" Usage="authorizationManagementClient.Clone client" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="client" Type="Hyak.Common.ServiceClient<Microsoft.Azure.Management.Authorization.AuthorizationManagementClient>" Index="0" FrameworkAlternate="azure-dotnet" />
</Parameters>
<Docs>
<param name="client">
Instance of AuthorizationManagementClient to clone to
</param>
<summary>
Clones properties from current instance to another
AuthorizationManagementClient instance
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Credentials">
<MemberSignature Language="C#" Value="public Microsoft.Azure.SubscriptionCloudCredentials Credentials { get; }" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.SubscriptionCloudCredentials Credentials" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Credentials" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Credentials As SubscriptionCloudCredentials" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="F#" Value="member this.Credentials : Microsoft.Azure.SubscriptionCloudCredentials" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Credentials" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="C#" Value="public Microsoft.Rest.ServiceClientCredentials Credentials { get; }" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Rest.ServiceClientCredentials Credentials" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Credentials As ServiceClientCredentials" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="F#" Value="member this.Credentials : Microsoft.Rest.ServiceClientCredentials" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Credentials" FrameworkAlternate="azure-dotnet-legacy" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember FrameworkAlternate="azure-dotnet">P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.Credentials</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType FrameworkAlternate="azure-dotnet">Microsoft.Azure.SubscriptionCloudCredentials</ReturnType>
<ReturnType FrameworkAlternate="azure-dotnet-legacy">Microsoft.Rest.ServiceClientCredentials</ReturnType>
</ReturnValue>
<Docs>
<summary>
Credentials needed for the client to connect to Azure.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DenyAssignments">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IDenyAssignmentsOperations DenyAssignments { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IDenyAssignmentsOperations DenyAssignments" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.DenyAssignments" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property DenyAssignments As IDenyAssignmentsOperations" />
<MemberSignature Language="F#" Value="member this.DenyAssignments : Microsoft.Azure.Management.Authorization.IDenyAssignmentsOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.DenyAssignments" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Management.Authorization.IDenyAssignmentsOperations</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the IDenyAssignmentsOperations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeserializationSettings">
<MemberSignature Language="C#" Value="public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Newtonsoft.Json.JsonSerializerSettings DeserializationSettings" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.DeserializationSettings" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property DeserializationSettings As JsonSerializerSettings" />
<MemberSignature Language="F#" Value="member this.DeserializationSettings : Newtonsoft.Json.JsonSerializerSettings" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.DeserializationSettings" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Newtonsoft.Json.JsonSerializerSettings</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets json deserialization settings.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GenerateClientRequestId">
<MemberSignature Language="C#" Value="public bool? GenerateClientRequestId { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<bool> GenerateClientRequestId" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.GenerateClientRequestId" />
<MemberSignature Language="VB.NET" Value="Public Property GenerateClientRequestId As Nullable(Of Boolean)" />
<MemberSignature Language="F#" Value="member this.GenerateClientRequestId : Nullable<bool> with get, set" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.GenerateClientRequestId" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.GenerateClientRequestId</InterfaceMember>
<InterfaceMember>P:Microsoft.Rest.Azure.IAzureClient.GenerateClientRequestId</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.Boolean></ReturnType>
</ReturnValue>
<Docs>
<summary>
Whether a unique x-ms-client-request-id should be generated. When set to
true a unique x-ms-client-request-id value is generated and included in
each request. Default is true.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GlobalAdministrator">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IGlobalAdministratorOperations GlobalAdministrator { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IGlobalAdministratorOperations GlobalAdministrator" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.GlobalAdministrator" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property GlobalAdministrator As IGlobalAdministratorOperations" />
<MemberSignature Language="F#" Value="member this.GlobalAdministrator : Microsoft.Azure.Management.Authorization.IGlobalAdministratorOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.GlobalAdministrator" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Management.Authorization.IGlobalAdministratorOperations</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the IGlobalAdministratorOperations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LongRunningOperationInitialTimeout">
<MemberSignature Language="C#" Value="public int LongRunningOperationInitialTimeout { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 LongRunningOperationInitialTimeout" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.LongRunningOperationInitialTimeout" />
<MemberSignature Language="VB.NET" Value="Public Property LongRunningOperationInitialTimeout As Integer" />
<MemberSignature Language="F#" Value="member this.LongRunningOperationInitialTimeout : int with get, set" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.LongRunningOperationInitialTimeout" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.LongRunningOperationInitialTimeout</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the initial timeout for Long Running Operations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LongRunningOperationRetryTimeout">
<MemberSignature Language="C#" Value="public int LongRunningOperationRetryTimeout { get; set; }" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="ILAsm" Value=".property instance int32 LongRunningOperationRetryTimeout" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.LongRunningOperationRetryTimeout" />
<MemberSignature Language="VB.NET" Value="Public Property LongRunningOperationRetryTimeout As Integer" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="F#" Value="member this.LongRunningOperationRetryTimeout : int with get, set" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.LongRunningOperationRetryTimeout" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="C#" Value="public int? LongRunningOperationRetryTimeout { get; set; }" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<int32> LongRunningOperationRetryTimeout" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="VB.NET" Value="Public Property LongRunningOperationRetryTimeout As Nullable(Of Integer)" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="F#" Value="member this.LongRunningOperationRetryTimeout : Nullable<int> with get, set" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.LongRunningOperationRetryTimeout" FrameworkAlternate="azure-dotnet-legacy" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.LongRunningOperationRetryTimeout</InterfaceMember>
<InterfaceMember FrameworkAlternate="azure-dotnet-legacy">P:Microsoft.Rest.Azure.IAzureClient.LongRunningOperationRetryTimeout</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType FrameworkAlternate="azure-dotnet">System.Int32</ReturnType>
<ReturnType FrameworkAlternate="azure-dotnet-legacy">System.Nullable<System.Int32></ReturnType>
</ReturnValue>
<Docs>
<summary>
The retry timeout in seconds for Long Running Operations. Default value is
30.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Permissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Management.Authorization.IPermissionOperations Permissions { get; }" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IPermissionOperations Permissions" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Permissions" />
<MemberSignature Language="VB.NET" Value="Public Overridable ReadOnly Property Permissions As IPermissionOperations" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="F#" Value="member this.Permissions : Microsoft.Azure.Management.Authorization.IPermissionOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Permissions" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IPermissionsOperations Permissions { get; }" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IPermissionsOperations Permissions" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Permissions As IPermissionsOperations" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="F#" Value="member this.Permissions : Microsoft.Azure.Management.Authorization.IPermissionsOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.Permissions" FrameworkAlternate="azure-dotnet-legacy" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember FrameworkAlternate="azure-dotnet">P:Microsoft.Azure.Management.Authorization.IAuthorizationManagementClient.Permissions</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType FrameworkAlternate="azure-dotnet">Microsoft.Azure.Management.Authorization.IPermissionOperations</ReturnType>
<ReturnType FrameworkAlternate="azure-dotnet-legacy">Microsoft.Azure.Management.Authorization.IPermissionsOperations</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the IPermissionsOperations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ProviderOperationsMetadata">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IProviderOperationsMetadataOperations ProviderOperationsMetadata { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IProviderOperationsMetadataOperations ProviderOperationsMetadata" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ProviderOperationsMetadata" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ProviderOperationsMetadata As IProviderOperationsMetadataOperations" />
<MemberSignature Language="F#" Value="member this.ProviderOperationsMetadata : Microsoft.Azure.Management.Authorization.IProviderOperationsMetadataOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.ProviderOperationsMetadata" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Management.Authorization.IProviderOperationsMetadataOperations</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the IProviderOperationsMetadataOperations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RoleAssignmentMetrics">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IRoleAssignmentMetricsOperations RoleAssignmentMetrics { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IRoleAssignmentMetricsOperations RoleAssignmentMetrics" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.RoleAssignmentMetrics" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property RoleAssignmentMetrics As IRoleAssignmentMetricsOperations" />
<MemberSignature Language="F#" Value="member this.RoleAssignmentMetrics : Microsoft.Azure.Management.Authorization.IRoleAssignmentMetricsOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.RoleAssignmentMetrics" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Management.Authorization</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Management.Authorization.IRoleAssignmentMetricsOperations</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the IRoleAssignmentMetricsOperations.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RoleAssignments">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Management.Authorization.IRoleAssignmentOperations RoleAssignments { get; }" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IRoleAssignmentOperations RoleAssignments" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.RoleAssignments" />
<MemberSignature Language="VB.NET" Value="Public Overridable ReadOnly Property RoleAssignments As IRoleAssignmentOperations" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="F#" Value="member this.RoleAssignments : Microsoft.Azure.Management.Authorization.IRoleAssignmentOperations" Usage="Microsoft.Azure.Management.Authorization.AuthorizationManagementClient.RoleAssignments" FrameworkAlternate="azure-dotnet" />
<MemberSignature Language="C#" Value="public Microsoft.Azure.Management.Authorization.IRoleAssignmentsOperations RoleAssignments { get; }" FrameworkAlternate="azure-dotnet-legacy" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Management.Authorization.IRoleAssignmentsOperations RoleAssignments" FrameworkAlternate="azure-dotnet-legacy" />