Class FieldIdentifier
FieldIdentifier class uniquely identifies a field by the field value type and the field name.
Inherited Members
Namespace: SdlSdl.LanguagePlatformTranslationMemory
Assembly: Sdl.LanguagePlatform.TranslationMemory.dll
Syntax
[DataContract]
public class FieldIdentifier
Constructors
FieldIdentifier()
Initializes a new instance with default values.
Declaration
public FieldIdentifier()
FieldIdentifier(FieldValueType, string)
Constructor that takes the given field value type and field name.
Declaration
public FieldIdentifier(FieldValueType fieldValueType, string fieldName)
Parameters
Type | Name | Description |
---|---|---|
FieldValueType | fieldValueType | field value type |
string | fieldName | field name |
Properties
FieldName
FieldName property represents the field name.
Declaration
[DataMember]
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
string |
FieldValueType
FieldValueType property represents the field value type.
Declaration
[DataMember]
public FieldValueType FieldValueType { get; set; }
Property Value
Type | Description |
---|---|
FieldValueType |
Methods
Equals(object)
System.Object.Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool | true if the specified object is equal to the current object; otherwise, false. |
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A hash code for this object |