6 writes to cf
System.Management (6)
System\Management\WMIGenerator.cs (6)
1155
cf
= new CodeMemberField();
3699
cf
= new CodeMemberField();
3751
cf
= new CodeMemberField();
3758
cf
= new CodeMemberField();
4251
cf
= new CodeMemberField();
4431
cf
= new CodeMemberField();
27 references to cf
System.Management (27)
System\Management\WMIGenerator.cs (27)
1156
cf
.Name = PrivateNamesUsed["LateBoundObject"].ToString();
1157
cf
.Attributes = MemberAttributes.Private | MemberAttributes.Final;
1158
cf
.Type = new CodeTypeReference(PublicNamesUsed["BaseObjClass"].ToString());
1159
SysPropsClass.Members.Add(
cf
);
3700
cf
.Name = memberName;
3701
cf
.Attributes = MemberAttributes.Private | MemberAttributes.Final;
3704
cf
.Attributes |= MemberAttributes.Static;
3706
cf
.Type = new CodeTypeReference(MemberType);
3709
cf
.InitExpression = initExpression;
3711
cc.Members.Add(
cf
);
3715
cf
.Comments.Add(new CodeCommentStatement(Comment));
3752
cf
.Name = baseTypeMemberVariable;
3753
cf
.Attributes = MemberAttributes.Private | MemberAttributes.Final;
3754
cf
.Type = new CodeTypeReference(PublicNamesUsed["TypeConverter"].ToString());
3756
CodeConvertorClass.Members.Add(
cf
);
3759
cf
.Name = typeMemberVariable;
3760
cf
.Attributes = MemberAttributes.Private | MemberAttributes.Final;
3761
cf
.Type = new CodeTypeReference(PublicNamesUsed["Type"].ToString());
3763
CodeConvertorClass.Members.Add(
cf
);
4252
cf
.Name = strObjectCollection;
4253
cf
.Attributes = MemberAttributes.Private | MemberAttributes.Final;
4254
cf
.Type = new CodeTypeReference(strManagementObjectCollectionType);
4255
ccc.Members.Add(
cf
);
4432
cf
.Name = strObjectEnumerator;
4433
cf
.Attributes = MemberAttributes.Private | MemberAttributes.Final;
4434
cf
.Type = new CodeTypeReference(strManagementObjectCollectionType + "." +
4436
ecc.Members.Add(
cf
);