AspnetMembershipDTO Partial Class
A partial data object class for the “membership” table in the ASP.NET 2.0 provider database. The relevant data transfer objects contain only the serializable data of a data object.
- //*****************************************************************************
- // This file is part of the data access layer example to the ASP.NET 2.0 provider database
- // This file was written by Adam Buenz [WSS MVP] of ARB Security Solutions, LLC
- // http://www.sharepointsecurity.com
- //
- // This file and its parts is free for re-distribution, for use in both free
- // and commercial applications, however this header must remain intact for legal
- // use. The data access layer example is distributed in the hope that it will
- // be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- //*****************************************************************************
- using System;
- namespace Aspnet.Provider.Datalayer.DataTransferObjects
- {
- /// <summary>
- /// The AspnetApplications Data Transfer Object.
- /// </summary>
- [Serializable]
- public partial class AspnetApplicationsDTO
- {
- private string applicationname;
- private string loweredapplicationname;
- private Guid applicationid;
- private string description;
- /// <summary>
- /// The Applicationname.
- /// </summary>
- public virtual string Applicationname
- {
- get { return this.applicationname; }
- set { this.applicationname = value; }
- }
- /// <summary>
- /// The Loweredapplicationname.
- /// </summary>
- public virtual string Loweredapplicationname
- {
- get { return this.loweredapplicationname; }
- set { this.loweredapplicationname = value; }
- }
- /// <summary>
- /// The Applicationid.
- /// </summary>
- public virtual Guid Applicationid
- {
- get { return this.applicationid; }
- set { this.applicationid = value; }
- }
- /// <summary>
- /// The Description.
- /// </summary>
- public virtual string Description
- {
- get { return this.description; }
- set { this.description = value; }
- }
- /// <summary>
- /// The default constructor.
- /// </summary>
- public AspnetApplicationsDTO()
- {
- }
- }
- }
Articles & Research
SharePoint Security
SharePoint Development
SharePoint Architecture
Claims Authentication
Forefront For SharePoint
AIS / Dynamics GP
Team Foundation Server
Pex And Moles
ISA/TMG/IAG/UAG
DPM
Cardspace
Research Methodology
Rural ICT Development
Numerical Analysis
Multi-Level Research
Knowledge Management
Personal/Off-Topic