Search Results for

    Show / Hide Table of Contents

    Class entity

    Inheritance
    System.Object
    entity
    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: Xbim.IO.Xml.BsConf
    Assembly: Xbim.IO.MemoryModel.dll
    Syntax
    [Serializable]
    public class entity

    Constructors

    | Improve this Doc View Source

    entity()

    Declaration
    public entity()

    Properties

    | Improve this Doc View Source

    _select

    Declaration
    public string _select { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Attributes

    Declaration
    public IEnumerable<attribute> Attributes { get; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<attribute>
    | Improve this Doc View Source

    ChangedInverses

    Declaration
    public IEnumerable<inverse> ChangedInverses { get; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<inverse>
    | Improve this Doc View Source

    content

    Declaration
    public content content { get; set; }
    Property Value
    Type Description
    content
    | Improve this Doc View Source

    contentSpecified

    Declaration
    public bool contentSpecified { get; set; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    EntityName

    Declaration
    public string EntityName { get; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    expattribute

    Declaration
    public expattribute expattribute { get; set; }
    Property Value
    Type Description
    expattribute
    | Improve this Doc View Source

    exptype

    Declaration
    public exptype exptype { get; set; }
    Property Value
    Type Description
    exptype
    | Improve this Doc View Source

    exptypeSpecified

    Declaration
    public bool exptypeSpecified { get; set; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    facet

    Declaration
    public string facet { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    IgnoredAttributes

    Declaration
    public IEnumerable<attribute> IgnoredAttributes { get; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<attribute>
    | Improve this Doc View Source

    implementation

    Declaration
    public string implementation { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    inheritance

    Declaration
    public bool inheritance { get; set; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Items

    Declaration
    public List<object> Items { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Object>
    | Improve this Doc View Source

    keep

    Declaration
    public bool keep { get; set; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    map

    Declaration
    public string map { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    name

    Declaration
    public string name { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    new

    Declaration
    public bool new { get; set; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    select

    Declaration
    public List<string> select { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.String>
    | Improve this Doc View Source

    synthetic

    Declaration
    public List<string> synthetic { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.String>
    | Improve this Doc View Source

    TaggLessAttributes

    Declaration
    public IEnumerable<attribute> TaggLessAttributes { get; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<attribute>
    | Improve this Doc View Source

    tagless

    Declaration
    public string tagless { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    tagsource

    Declaration
    public string tagsource { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    tagvalues

    Declaration
    public string tagvalues { get; set; }
    Property Value
    Type Description
    System.String

    Methods

    | Improve this Doc View Source

    Deserialize(String)

    Declaration
    public static entity Deserialize(string xml)
    Parameters
    Type Name Description
    System.String xml
    Returns
    Type Description
    entity
    | Improve this Doc View Source

    Deserialize(String, out entity)

    Declaration
    public static bool Deserialize(string xml, out entity obj)
    Parameters
    Type Name Description
    System.String xml
    entity obj
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Deserialize(String, out entity, out Exception)

    Deserializes workflow markup into an entity object

    Declaration
    public static bool Deserialize(string xml, out entity obj, out Exception exception)
    Parameters
    Type Name Description
    System.String xml

    string workflow markup to deserialize

    entity obj

    Output entity object

    System.Exception exception

    output Exception value if deserialize failed

    Returns
    Type Description
    System.Boolean

    true if this XmlSerializer can deserialize the object; otherwise, false

    | Improve this Doc View Source

    GetOrCreateAttribute(String)

    Declaration
    public attribute GetOrCreateAttribute(string attributeName)
    Parameters
    Type Name Description
    System.String attributeName
    Returns
    Type Description
    attribute
    | Improve this Doc View Source

    GetOrCreateInverse(String)

    Declaration
    public inverse GetOrCreateInverse(string attributeName)
    Parameters
    Type Name Description
    System.String attributeName
    Returns
    Type Description
    inverse
    | Improve this Doc View Source

    LoadFromFile(String)

    Declaration
    public static entity LoadFromFile(string fileName)
    Parameters
    Type Name Description
    System.String fileName
    Returns
    Type Description
    entity
    | Improve this Doc View Source

    LoadFromFile(String, out entity)

    Declaration
    public static bool LoadFromFile(string fileName, out entity obj)
    Parameters
    Type Name Description
    System.String fileName
    entity obj
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    LoadFromFile(String, out entity, out Exception)

    Deserializes xml markup from file into an entity object

    Declaration
    public static bool LoadFromFile(string fileName, out entity obj, out Exception exception)
    Parameters
    Type Name Description
    System.String fileName

    string xml file to load and deserialize

    entity obj

    Output entity object

    System.Exception exception

    output Exception value if deserialize failed

    Returns
    Type Description
    System.Boolean

    true if this XmlSerializer can deserialize the object; otherwise, false

    | Improve this Doc View Source

    SaveToFile(String)

    Declaration
    public virtual void SaveToFile(string fileName)
    Parameters
    Type Name Description
    System.String fileName
    | Improve this Doc View Source

    SaveToFile(String, out Exception)

    Serializes current entity object into file

    Declaration
    public virtual bool SaveToFile(string fileName, out Exception exception)
    Parameters
    Type Name Description
    System.String fileName

    full path of outupt xml file

    System.Exception exception

    output Exception value if failed

    Returns
    Type Description
    System.Boolean

    true if can serialize and save into file; otherwise, false

    | Improve this Doc View Source

    Serialize()

    Serializes current entity object into an XML document

    Declaration
    public virtual string Serialize()
    Returns
    Type Description
    System.String

    string XML value

    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2022 xbim