Sitecore.SharedSource.Analytics.Context.Visitor.Visitor C# (CSharp) Method

Visitor() public method

public Visitor ( ) : System.Data.Linq
return System.Data.Linq
		public Visitor()
		{
			this._Visits = new EntitySet<Visit>(new Action<Visit>(this.attach_Visits), new Action<Visit>(this.detach_Visits));
			this._AutomationStates = new EntitySet<AutomationState>(new Action<AutomationState>(this.attach_AutomationStates), new Action<AutomationState>(this.detach_AutomationStates));
			this._PageEvents = new EntitySet<PageEvent>(new Action<PageEvent>(this.attach_PageEvents), new Action<PageEvent>(this.detach_PageEvents));
			this._Pages = new EntitySet<Page>(new Action<Page>(this.attach_Pages), new Action<Page>(this.detach_Pages));
			this._Profiles = new EntitySet<Profile>(new Action<Profile>(this.attach_Profiles), new Action<Profile>(this.detach_Profiles));
			this._VisitorTags = new EntitySet<VisitorTag>(new Action<VisitorTag>(this.attach_VisitorTags), new Action<VisitorTag>(this.detach_VisitorTags));
			this._VisitorClassification1 = default(EntityRef<VisitorClassification>);
			this._VisitorClassification2 = default(EntityRef<VisitorClassification>);
			OnCreated();
		}