GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlBindingFlags Enumeration
In This Topic
    GoXmlBindingFlags Enumeration
    In This Topic
    These flags describe characteristics of an attribute-property binding use by GoXmlBindingTransformer.
    Syntax
    [Flags()]
    public enum GoXmlBindingFlags : System.Enum 
    Members
    MemberDescription
    Default The normal binding of an attribute with a property.
    DefinesShared The object property value is a reference; when reading XML, the attribute value should be a unique identifier that will be associated with the property value.
    NoGet Do not get this object property; the XML attribute is not generated.
    NoSet Do not set the object property when consuming XML.
    RethrowsExceptions If a property getter or setter throws an exception, instead of ignoring it, rethrow it.
    See Also