Class FileType
- Namespace
- ZeroInstall.Model.Capabilities
- Assembly
- ZeroInstall.Model.dll
An application's ability to open a certain file type.
[Serializable]
[Equatable]
public sealed class FileType : VerbCapability, IEquatable<XmlUnknown>, ICloneable<Capability>, IEquatable<Capability>, IEquatable<DefaultCapability>, IIconContainer, IDescriptionContainer, IEquatable<IconCapability>, IEquatable<VerbCapability>, IEquatable<FileType>
- Inheritance
-
FileType
- Implements
- Inherited Members
Properties
ConflictIDs
Identifiers from a namespace global to all Capabilitys. Collisions in this namespace indicate that the concerned Capabilitys are in conflict cannot be registered on a single system at the same time.
[Browsable(false)]
[IgnoreEquality]
public override IEnumerable<string> ConflictIDs { get; }
Property Value
Remarks
These identifiers are not guaranteed to stay the same between versions. They should not be stored in files but instead always generated on demand.
Extensions
A list of all file extensions associated with this file type.
[Browsable(false)]
[OrderedEquality]
public List<FileTypeExtension> Extensions { get; }
Property Value
Methods
Clone()
Creates a deep copy of this Capability instance.
public override Capability Clone()
Returns
- Capability
The new copy of the Capability.
Equals(object?)
Determines whether the specified object is equal to the current object.
public override bool Equals(object? obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
Normalize()
Converts legacy elements, sets default values, etc..
public override void Normalize()
Exceptions
- InvalidDataException
A required property is not set or invalid.
ToString()
Returns the capability in the form "ID". Not safe for parsing!
public override string ToString()
Returns
Operators
operator ==(FileType?, FileType?)
Indicates whether the object on the left is equal to the object on the right.
public static bool operator ==(FileType? left, FileType? right)
Parameters
Returns
- bool
true if the objects are equal; otherwise, false.
operator !=(FileType?, FileType?)
Indicates whether the object on the left is not equal to the object on the right.
public static bool operator !=(FileType? left, FileType? right)
Parameters
Returns
- bool
true if the objects are not equal; otherwise, false.