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