コード例 #1
0
 public BamlStaticResource(IBamlType type, BamlElementFlags flags)
 {
     _type  = type;
     _flags = flags;
 }
コード例 #2
0
 public BamlDefAttributeKeyType(IBamlType value, BamlElementFlags typeFlags, BamlNode valueNode, bool shared, bool sharedSet)
     : this(value, typeFlags, valueNode)
 {
     _shared    = shared;
     _sharedSet = sharedSet;
 }
コード例 #3
0
 public BamlDefAttributeKeyType(IBamlType value, BamlElementFlags typeFlags, BamlNode valueNode)
 {
     _value     = value;
     _typeFlags = typeFlags;
     _valueNode = valueNode;
 }
コード例 #4
0
 public BamlKeyElement(IBamlType type, BamlElementFlags typeFlags, BamlNode valueNode, bool shared, bool sharedSet)
     : this(type, typeFlags, valueNode)
 {
     _shared    = shared;
     _sharedSet = sharedSet;
 }
コード例 #5
0
 public BamlKeyElement(IBamlType type, BamlElementFlags typeFlags, BamlNode valueNode)
 {
     _type      = type;
     _typeFlags = typeFlags;
     _valueNode = valueNode;
 }
コード例 #6
0
 public BamlElement(IBamlType type, BamlElementFlags flags)
 {
     _type  = type;
     _flags = flags;
 }