SimpleFramework.Xml.Core.CompositeKey.CompositeKey C# (CSharp) Method

CompositeKey() public method

Constructor for the CompositeKey object. This will create an object capable of reading an writing composite keys from an XML element. This also allows a parent element to be created to wrap the key object if desired.
public CompositeKey ( Context context, Entry entry, Type type ) : SimpleFramework.Xml.Strategy
context Context /// this is the root context for the serialization ///
entry Entry /// this is the entry object used for configuration ///
type System.Type /// this is the type of object the key represents ///
return SimpleFramework.Xml.Strategy
      public CompositeKey(Context context, Entry entry, Type type) {
         this.root = new Traverser(context);
         this.style = context.Style;
         this.context = context;
         this.entry = entry;
         this.type = type;
      }
      /// <summary>