4 writes to fullName
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (4)
61this.fullName = typeName; 63this.fullName = namespaceName + "." + typeName; 67this.fullName = declaringType.FullName + "+" + typeName; 90this.fullName = Helper.EnsureTypeName(elementTypeFullName);
16 references to fullName
System.Workflow.ComponentModel (16)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (16)
258return this.fullName; 288string name = this.fullName; 300name = this.fullName.Substring(idx + 1); 309if (this.fullName == Name) 317return this.fullName.Substring(0, this.fullName.Length - Name.Length - 1); 569return fullName; 594int elementCharPosition = fullName.LastIndexOfAny(elementDecorators); 597elementType = ResolveType(fullName.Substring(0, elementCharPosition)); 672type = typeProvider.GetType(fullName + "+" + name); 1001return (this.fullName[this.fullName.Length - 1] == '&'); 1006return this.ResolveType(this.fullName + "&"); 1030return (this.fullName[this.fullName.Length - 1] == '*'); 1169partialType = new DesignTimeType(this, codeType.Name, this.codeNamespaceImports, this.fullName, this.typeProvider);