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