Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates an instance of AppPrincipalCredential that wraps a symmetric key.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
Syntax
'Declaration
Public Shared Function CreateFromSymmetricKey ( _
context As ClientRuntimeContext, _
symmetricKey As String, _
notBefore As DateTime, _
notAfter As DateTime _
) As AppPrincipalCredential
'Usage
Dim context As ClientRuntimeContext
Dim symmetricKey As String
Dim notBefore As DateTime
Dim notAfter As DateTime
Dim returnValue As AppPrincipalCredential
returnValue = AppPrincipalCredential.CreateFromSymmetricKey(context, _
symmetricKey, notBefore, notAfter)
public static AppPrincipalCredential CreateFromSymmetricKey(
ClientRuntimeContext context,
string symmetricKey,
DateTime notBefore,
DateTime notAfter
)
Parameters
context
Type: Microsoft.SharePoint.Client.ClientRuntimeContextThe runtime context.
symmetricKey
Type: System.StringThe symmetric key.
notBefore
Type: System.DateTimeAn instance is not created if it is before this date and time.
notAfter
Type: System.DateTimeAn instance is not created if it is after this date and time.
Return value
Type: Microsoft.SharePoint.Client.AppPrincipalCredential
A new instance of AppPrincipalCredential.