Class MetaLinkInformation
Represent weak link meta information.
Inheritance
System.Object
    MetaLinkInformation
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Mediachase.BusinessFoundation.Data.Meta.Management
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 10.8.0Syntax
public class MetaLinkInformation
  Constructors
MetaLinkInformation(MetaField)
Initializes a new instance of the MetaLinkInformation class.
Declaration
public MetaLinkInformation(MetaField Owner)
  Parameters
| Type | Name | Description | 
|---|---|---|
| MetaField | Owner | The owner.  | 
      
Properties
AssignedMetaClassList
Gets the assigned meta class list.
Declaration
public List<string> AssignedMetaClassList { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<System.String> | The assigned meta class list.  | 
      
LinkedFieldList
Gets the linked field list.
Declaration
public List<string> LinkedFieldList { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<System.String> | The linked field list.  | 
      
LinkedFieldReadonly
Gets or sets a value indicating whether [linked field readonly].
Declaration
public bool LinkedFieldReadonly { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
  | 
      
MappingList
Gets the mapping list.
Declaration
public List<MetaFieldMapping> MappingList { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<MetaFieldMapping> | The mapping list.  | 
      
Owner
Gets the owner.
Declaration
public MetaField Owner { get; }
  Property Value
| Type | Description | 
|---|---|
| MetaField | The owner.  | 
      
TitleField
Gets or sets the index of the title.
Declaration
public string TitleField { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The index of the title.  | 
      
TitleIndex
Gets or sets the index of the title.
Declaration
public int TitleIndex { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The index of the title.  | 
      
Methods
FindMapping(String, String, String)
Finds the mapping.
Declaration
public MetaFieldMapping FindMapping(string srcMetaClass, string destMetaClass, string destFieldName)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | srcMetaClass | The source meta class.  | 
      
| System.String | destMetaClass | The destination meta class.  | 
      
| System.String | destFieldName | Name of the destination field.  | 
      
Returns
| Type | Description | 
|---|---|
| MetaFieldMapping |