-
Notifications
You must be signed in to change notification settings - Fork 264
/
SelectedPartition.xml
162 lines (162 loc) · 8 KB
/
SelectedPartition.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
<Type Name="SelectedPartition" FullName="System.Fabric.SelectedPartition">
<TypeSignature Language="C#" Value="public class SelectedPartition : IEquatable<System.Fabric.SelectedPartition>" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit SelectedPartition extends System.Object implements class System.IEquatable`1<class System.Fabric.SelectedPartition>" />
<TypeSignature Language="DocId" Value="T:System.Fabric.SelectedPartition" />
<TypeSignature Language="VB.NET" Value="Public Class SelectedPartition
Implements IEquatable(Of SelectedPartition)" />
<TypeSignature Language="F#" Value="type SelectedPartition = class
 interface IEquatable<SelectedPartition>" />
<AssemblyInfo>
<AssemblyName>System.Fabric</AssemblyName>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IEquatable<System.Fabric.SelectedPartition></InterfaceName>
</Interface>
</Interfaces>
<Docs>
<summary>
Returns selected partition using PartitionSelector FaultManagementClient APIs.
</summary>
<remarks>
This class returns information about the partition that was selected using PartitionSelector testability API.
For example if the PartitionSelector was created using the RandomOf overload this class will populate
service name and partition id of the for selected partition
</remarks>
</Docs>
<Members>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public bool Equals (System.Fabric.SelectedPartition other);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Equals(class System.Fabric.SelectedPartition other) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Fabric.SelectedPartition.Equals(System.Fabric.SelectedPartition)" />
<MemberSignature Language="VB.NET" Value="Public Function Equals (other As SelectedPartition) As Boolean" />
<MemberSignature Language="F#" Value="override this.Equals : System.Fabric.SelectedPartition -> bool" Usage="selectedPartition.Equals other" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.IEquatable`1.Equals(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Fabric</AssemblyName>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="other" Type="System.Fabric.SelectedPartition" />
</Parameters>
<Docs>
<param name="other">A selected partition with which the current SelectedPartition is to be compared.</param>
<summary>
Compares this SelectedPartition with other SelectedPartition.
</summary>
<returns>True, if both service name and partition ID of the two SelectedPartition objects match; else returns false.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="None">
<MemberSignature Language="C#" Value="public static readonly System.Fabric.SelectedPartition None;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class System.Fabric.SelectedPartition None" />
<MemberSignature Language="DocId" Value="F:System.Fabric.SelectedPartition.None" />
<MemberSignature Language="VB.NET" Value="Public Shared ReadOnly None As SelectedPartition " />
<MemberSignature Language="F#" Value=" staticval mutable None : System.Fabric.SelectedPartition" Usage="System.Fabric.SelectedPartition.None" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>System.Fabric</AssemblyName>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Fabric.SelectedPartition</ReturnType>
</ReturnValue>
<Docs>
<summary>
Returns none partition selector.
</summary>
<remarks>
A SelectedPartition will be none for any testability API with overloads which does not take a partition
or replica selector as an input. For example if RestartNodeAsync is called with the NodeName overload
instead of ReplicaSelector then PartitionSelector returned will be None
</remarks>
</Docs>
</Member>
<Member MemberName="PartitionId">
<MemberSignature Language="C#" Value="public Guid PartitionId { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Guid PartitionId" />
<MemberSignature Language="DocId" Value="P:System.Fabric.SelectedPartition.PartitionId" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property PartitionId As Guid" />
<MemberSignature Language="F#" Value="member this.PartitionId : Guid" Usage="System.Fabric.SelectedPartition.PartitionId" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Fabric</AssemblyName>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Guid</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the partition ID as GUID
</summary>
<value>
A GUID
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ServiceName">
<MemberSignature Language="C#" Value="public Uri ServiceName { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Uri ServiceName" />
<MemberSignature Language="DocId" Value="P:System.Fabric.SelectedPartition.ServiceName" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ServiceName As Uri" />
<MemberSignature Language="F#" Value="member this.ServiceName : Uri" Usage="System.Fabric.SelectedPartition.ServiceName" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Fabric</AssemblyName>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the service name as URI
</summary>
<value>
A URI
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ToString">
<MemberSignature Language="C#" Value="public override string ToString ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Fabric.SelectedPartition.ToString" />
<MemberSignature Language="VB.NET" Value="Public Overrides Function ToString () As String" />
<MemberSignature Language="F#" Value="override this.ToString : unit -> string" Usage="selectedPartition.ToString " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Fabric</AssemblyName>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Gets a string representation of the SelectedPartition object
</summary>
<returns>A string with the format: Service Name: <service-name>, Partition Id: <partition-id></returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>