Method to create an ADFS server

Namespace: Novalys.VisualGuard.Security.Membership
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
public VGAdfsServer Create(
	string name,
	string description,
	string adfsUrl,
	string relayingPartyUrl,
	X509Certificate2 privateCertificate,
	string certificatePassword
)
Visual Basic
Public Function Create ( 
	name As String,
	description As String,
	adfsUrl As String,
	relayingPartyUrl As String,
	privateCertificate As X509Certificate2,
	certificatePassword As String
) As VGAdfsServer

Parameters

name
Type: System..::..String
Name of your Adfs Server
description
Type: System..::..String
Description of your ADFS server
adfsUrl
Type: System..::..String
Url of your Adfs server
relayingPartyUrl
Type: System..::..String
Url of your Adfs server
privateCertificate
Type: System.Security.Cryptography.X509Certificates..::..X509Certificate2
Private certicate of ADFS server , the certificate needs private key
certificatePassword
Type: System..::..String
Password of certicate

Return Value

Type: VGAdfsServer
Return VGAdfsServer object

See Also