Remoting

  • Thread starter Thread starter Marcelo
  • Start date Start date
M

Marcelo

Scott M. escreveu:
You'll need to be more specific about what it is you want ideas about. What
is your question?
My idea is two classes:
first:
public class FieldList
private _FieldList as new ListOf(Field)
public sub AddFields(fNname as string)
try
dim FieldConfig as new Field
fieldConfig.Name = "Field01"
_FieldConfig.add(fieldConfig)
catch ex as exception
end try
end sub
end class
Second Class:
public class Field
private _Name as string
sub new(name as string)
_Name = name
end sub
'More implementations: Properties and Functions
end class

In my client i have instance of FieldList and add all fields using the
method AddFields. OK, i need to share this instance with my server in
remoting.

Thanks to your attention.
 
You'll need to be more specific about what it is you want ideas about. What
is your question?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top