IXmlSerializable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I whave a custom membershipProvider which inherits from MembershiopUser also
I want to implement IXmlSerializable. Is my following code correct.
public class SSOMembershipUser : System.Web.Security.MembershipUser
:IXmlSerializable
 
public class SSOMembershipUser : System.Web.Security.MembershipUser,
IXmlSerializable

E.g base class separated with : (colon) and then interface(s) separated with
, (comma)
 
To add, of course you need also implement the interface e.g provide the
needed methods etc
 
Back
Top