Class AccessPointList
Contains a set of AccessPoints to be registered in a desktop environment.
Inherited Members
Namespace: ZeroInstall.DesktopIntegration.AccessPoints
Assembly: ZeroInstall.DesktopIntegration.dll
Syntax
public sealed class AccessPointList : XmlUnknown
Constructors
AccessPointList()
Declaration
public AccessPointList()
Properties
Entries
A list of AccessPoints.
Declaration
public List<AccessPoint> Entries { get; }
Property Value
Type | Description |
---|---|
List<AccessPoint> |
Methods
Clone()
Creates a deep copy of this AccessPointList instance.
Declaration
public AccessPointList Clone()
Returns
Type | Description |
---|---|
AccessPointList | The new copy of the AccessPointList. |
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj |
Returns
Type | Description |
---|---|
Boolean |
Equals(AccessPointList)
Declaration
public bool Equals(AccessPointList other)
Parameters
Type | Name | Description |
---|---|---|
AccessPointList | other |
Returns
Type | Description |
---|---|
Boolean |
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 |
Overrides
ToString()
Returns the access point list in the form "Entry; Entry; ...". Not safe for parsing!
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |
Operators
Equality(AccessPointList, AccessPointList)
Indicates whether the object on the left is equal to the object on the right.
Declaration
public static bool operator ==(AccessPointList left, AccessPointList right)
Parameters
Type | Name | Description |
---|---|---|
AccessPointList | left | The left object |
AccessPointList | right | The right object |
Returns
Type | Description |
---|---|
Boolean | true if the objects are equal; otherwise, false. |
Inequality(AccessPointList, AccessPointList)
Indicates whether the object on the left is not equal to the object on the right.
Declaration
public static bool operator !=(AccessPointList left, AccessPointList right)
Parameters
Type | Name | Description |
---|---|---|
AccessPointList | left | The left object |
AccessPointList | right | The right object |
Returns
Type | Description |
---|---|
Boolean | true if the objects are not equal; otherwise, false. |