2 writes to runtimeType
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (2)
67this.runtimeType = runtimeType; 88this.runtimeType = runtimeType;
59 references to runtimeType
System.Workflow.ComponentModel (59)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (59)
108get { return this.runtimeType.MetadataToken; } 122return this.runtimeType.Assembly; 129return this.FullName + ", " + this.runtimeType.Assembly.FullName; 136return ResolveTypeFromTypeSystem(this.runtimeType.BaseType); 143if (this.runtimeType.DeclaringType == null) 145return this.typeProvider.GetType(this.runtimeType.DeclaringType.AssemblyQualifiedName); 153StringBuilder fullName = new StringBuilder(this.runtimeType.FullName); 174return this.runtimeType.GUID; 181return this.runtimeType.Module; 200return this.runtimeType.Namespace; 207return this.runtimeType.TypeHandle; 214return this.runtimeType.UnderlyingSystemType; 258if (this.runtimeType.IsGenericTypeDefinition) 292otherType = ((RTTypeWrapper)otherType).runtimeType; 294return this.runtimeType == otherType; 299return this.runtimeType.GetCustomAttributes(inherit); 303return this.runtimeType.GetCustomAttributes(attributeType, inherit); 308foreach (ConstructorInfo ctorInfo in this.runtimeType.GetConstructors(bindingAttr)) 314EventInfo eventInfo = this.runtimeType.GetEvent(name, bindingAttr); 322foreach (EventInfo eventInfo in this.runtimeType.GetEvents(bindingAttr)) 328FieldInfo field = this.runtimeType.GetField(name, bindingAttr); 336foreach (FieldInfo fieldInfo in this.runtimeType.GetFields(bindingAttr)) 343foreach (MethodInfo methodInfo in this.runtimeType.GetMethods(bindingAttr)) 350foreach (PropertyInfo propInfo in this.runtimeType.GetProperties(bindingAttr)) 357foreach (MemberInfo memberInfo in this.runtimeType.GetMember(name, type, bindingAttr)) 364foreach (MemberInfo memberInfo in this.runtimeType.GetMembers(bindingAttr)) 370Type nestedType = this.runtimeType.GetNestedType(name, bindingAttr); 378foreach (Type nestedType in this.runtimeType.GetNestedTypes(bindingAttr)) 384Type itfType = this.runtimeType.GetInterface(name, ignoreCase); 392foreach (Type itfType in this.runtimeType.GetInterfaces()) 401return this.runtimeType.InvokeMember(name, bindingFlags, binder, target, providedArgs, modifiers, culture, namedParams); 405return System.Workflow.ComponentModel.Compiler.TypeProvider.IsSubclassOf(this.runtimeType, potentialBaseType); 409Type rtType = this.runtimeType; 417return this.runtimeType.ToString(); 421return this.runtimeType.GetHashCode(); 425return this.runtimeType.IsDefined(attributeType, inherit); 429return ResolveTypeFromTypeSystem(this.runtimeType.GetElementType()); 513return this.runtimeType.IsGenericTypeDefinition; 520return this.runtimeType.IsGenericParameter; 527return this.runtimeType.GenericParameterPosition; 536return this.runtimeType.IsGenericType; 545return this.runtimeType.ContainsGenericParameters; 555return this.runtimeType; 579if ((typeArgs.Length == 1) && (this.runtimeType == typeof(Nullable<>)) && !(typeArgs[0].IsEnum)) 627returnType = new RTTypeWrapper(this.typeProvider, this.runtimeType, typeArgs); 633returnType = new RTTypeWrapper(this.typeProvider, this.runtimeType, typeArgs); 672foreach (ConstructorInfo ctorInfo in this.runtimeType.GetConstructors(bindingAttr)) 695foreach (MethodInfo method in this.runtimeType.GetMethods(bindingAttr)) 722foreach (PropertyInfo propInfo in this.runtimeType.GetProperties(bindingAttr)) 749return this.runtimeType.Attributes; 753return this.runtimeType.HasElementType; 757return this.runtimeType.GetArrayRank(); 761return this.runtimeType.IsArray; 765return this.runtimeType.IsByRef; 769return this.runtimeType.IsCOMObject; 773return this.runtimeType.IsContextful; 777return this.runtimeType.IsMarshalByRef; 781return this.runtimeType.IsPointer; 785return this.runtimeType.IsPrimitive;