﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » Enhancement Requests  » Suggestion for serialzing class name to designer</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 09 Jun 2026 08:32:15 GMT</lastBuildDate><ttl>20</ttl><item><title>Suggestion for serialzing class name to designer</title><link>http://forum.strataframe.net/FindPost12067.aspx</link><description>I'd like to suggest that when serializing a class name to the designer file, like when indicating a BO type or enum type, rather than serializing the name as text, use the GetType(TypeToSerialize).FullName (or the typeof().FullName I think with C#).  E.g.&lt;br&gt;
&lt;br&gt;
[codesnippet]' Old way&lt;br&gt;
ListPopulationSettings1.BusinessObjectType = "MyApp.MyBo"&lt;br&gt;
ListPopulationSettings1.MethodToExecute = "FillAll;MyApp.MyBo"&lt;br&gt;
' Suggested way&lt;br&gt;
ListPopulationSettings1.BusinessObjectType = GetType(MyApp.MyBo).FullName&lt;br&gt;
ListPopulationSettings1.MethodToExecute = "FillAll;" &amp; GetType(MyApp.MyBo).FullName&lt;br&gt;
[/codesnippet]&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
This would increase the coverage of the types you could obfuscate greatly.  Right now, I can't obfuscate any BO, because the type name of the BO is likely reference via plain text in designer files.  If there is some way to also do with when indicating methods or properties, such when setting the fill method when setting population settings or setting the bound field.&lt;br&gt;
&lt;br&gt;
Thanks!</description><pubDate>Thu, 18 Oct 2007 13:41:16 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item></channel></rss>