Example #1
0
 public PropertyDeclaration(string name, BamlTranslator.TypeDeclaration declaringType)
 {
     this.name = name;
     this.declaringType = declaringType;
 }
Example #2
0
 public BamlTranslator.TypeDeclaration Copy(string xmlPrefix)
 {
     BamlTranslator.TypeDeclaration declaration = new BamlTranslator.TypeDeclaration(this.name, this.namespaceName, this.assembly);
     declaration.xmlPrefix = xmlPrefix;
     return declaration;
 }
Example #3
0
 // Methods
 public PropertyDeclaration(string name)
 {
     this.name = name;
     this.declaringType = null;
 }