SDKUmbracoMembershipModule 1.0.0

dotnet add package SDKUmbracoMembershipModule --version 1.0.0
NuGet\Install-Package SDKUmbracoMembershipModule -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SDKUmbracoMembershipModule" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SDKUmbracoMembershipModule --version 1.0.0
#r "nuget: SDKUmbracoMembershipModule, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SDKUmbracoMembershipModule as a Cake Addin
#addin nuget:?package=SDKUmbracoMembershipModule&version=1.0.0

// Install SDKUmbracoMembershipModule as a Cake Tool
#tool nuget:?package=SDKUmbracoMembershipModule&version=1.0.0

SDK Custom Umbraco Membership Module System helps to create\Edit\ Retrieve a new customised member in umbraco7 by passing a user defined object to the modules. System will return true or false value depends on the success or failure of the operations.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 1,232 4/21/2016

SDK Custom Umbraco Membership Module
SDK Custom Umbraco Membership Module System helps to create\Edit\ Retrieve a new customised member in umbraco7 by passing a user defined object to the modules. System will return true or false value depends on the success or failure of the operations.
1. Add a member
Place the code using SDKRegistration; on the top of the page
Register<your object> register = new Register< your object >();
register.AddMember(your filled object,"name of the member to be appeared on umbraco", new string[] { "your roles name", "your roles name" }, "your member type name");
2. Retrieve an existing Member
Place the code using SDKRegistration; on the top of the page
EditMembership< your object > edit = new EditMembership< your object >();
var filledObject = edit.GetMember(member email address);
2. Edit an existing Member
Place the code using SDKRegistration; on the top of the page
EditMembership< your object > edit = new EditMembership< your object >();
var filledObject = edit. EditMemberProperties (your filled object, member email address);
3. Exception Handling:
SDK Custom Umbraco Membership Module System will have a proper error handling mechanism, the system will log the errors to the log4net. System will return true or false depends on the success or failure of the operations.
Note:
your object - should be replaced by the name of the object you are passing to create the membership
your filled object - should be replaced by the strongly typed object which has the values from the user
your roles name - should be replaced by the roles to assign for the members
your member type name -  should be the type of the member to you want to create, this field is optional
member email address – should be the email address of the member you want to retrieve
filledObject  - should be the name of the object need to be filled