43 references to Helper
System.Workflow.ComponentModel (43)
AuthoringOM\Compiler\TypeSystem\CodeDomLoader.cs (2)
40
string typename =
Helper
.EnsureTypeName(codeTypeDeclaration.Name);
43
typename = (
Helper
.EnsureTypeName(codeNamespace.Name) + "." + typename);
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (8)
55
typeName =
Helper
.EnsureTypeName(typeName);
56
namespaceName =
Helper
.EnsureTypeName(namespaceName);
90
this.fullName =
Helper
.EnsureTypeName(elementTypeFullName);
132
this.typeAttributes |=
Helper
.ConvertToTypeAttributes(codeDomType.Attributes, this.declaringType);
361
this.attributes =
Helper
.LoadCustomAttributes(attributeDecls, this);
371
return
Helper
.GetCustomAttributes(attributeType, inherit, this.attributes, this);
585
if (
Helper
.IsDefined(attributeType, inherit, attributes, this))
1161
if (nestedType.Name.Equals(
Helper
.EnsureTypeName(codeType.Name)))
AuthoringOM\Compiler\TypeSystem\EventInfo.cs (5)
42
this.name =
Helper
.EnsureTypeName(codeDomEvent.Name);
139
this.attributes =
Helper
.LoadCustomAttributes(this.codeDomEvent.CustomAttributes, this.DeclaringType as DesignTimeType);
141
return
Helper
.GetCustomAttributes(attributeType, inherit, this.attributes, this);
150
this.attributes =
Helper
.LoadCustomAttributes(this.codeDomEvent.CustomAttributes, this.DeclaringType as DesignTimeType);
152
if (
Helper
.IsDefined(attributeType, inherit, attributes, this))
AuthoringOM\Compiler\TypeSystem\FieldInfo.cs (6)
38
fieldAttributes =
Helper
.ConvertToFieldAttributes(codeDomField.Attributes);
84
return
Helper
.EnsureTypeName(this.codeDomField.Name);
115
this.attributes =
Helper
.LoadCustomAttributes(this.codeDomField.CustomAttributes, this.DeclaringType as DesignTimeType);
117
return
Helper
.GetCustomAttributes(attributeType, inherit, this.attributes, this);
126
this.attributes =
Helper
.LoadCustomAttributes(this.codeDomField.CustomAttributes, this.DeclaringType as DesignTimeType);
128
if (
Helper
.IsDefined(attributeType, inherit, attributes, this))
AuthoringOM\Compiler\TypeSystem\MethodInfo.cs (11)
80
return
Helper
.ConvertToMethodAttributes(this.codeConstructor.Attributes);
122
this.attributes =
Helper
.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as DesignTimeType);
124
return
Helper
.GetCustomAttributes(attributeType, inherit, this.attributes, this);
132
this.attributes =
Helper
.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as DesignTimeType);
134
if (
Helper
.IsDefined(attributeType, inherit, attributes, this))
241
return
Helper
.ConvertToMethodAttributes(this.methodInfo.Attributes) | (this.isSpecialName ? MethodAttributes.SpecialName : 0);
256
return
Helper
.EnsureTypeName(this.methodInfo.Name);
286
this.attributes =
Helper
.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as DesignTimeType);
288
return
Helper
.GetCustomAttributes(attributeType, inherit, this.attributes, this);
296
this.attributes =
Helper
.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as DesignTimeType);
298
if (
Helper
.IsDefined(attributeType, inherit, attributes, this))
AuthoringOM\Compiler\TypeSystem\ParameterInfo.cs (2)
22
this.NameImpl =
Helper
.EnsureTypeName(codeParameter.Name);
24
this.AttrsImpl =
Helper
.ConvertToParameterAttributes(codeParameter.Direction);
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (9)
59
if (
Helper
.IncludeAccessor(this.GetGetMethod(nonPublic), nonPublic))
62
if (
Helper
.IncludeAccessor(this.GetSetMethod(nonPublic), nonPublic))
159
return
Helper
.EnsureTypeName(this.property.Name);
192
this.attributes =
Helper
.LoadCustomAttributes(this.property.CustomAttributes, this.DeclaringType as DesignTimeType);
194
return
Helper
.GetCustomAttributes(attributeType, inherit, this.attributes, this);
203
this.attributes =
Helper
.LoadCustomAttributes(this.property.CustomAttributes, this.DeclaringType as DesignTimeType);
205
if (
Helper
.IsDefined(attributeType, inherit, attributes, this))
245
return
Helper
.EnsureTypeName(this.name);
350
return (
Helper
.ConvertToMethodAttributes(this.property.CodeMemberProperty.Attributes) |