mirror of
https://github.com/bitwarden/mobile
synced 2025-12-12 06:13:21 +00:00
41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
using AuthenticationServices;
|
|
using Foundation;
|
|
using System;
|
|
using UIKit;
|
|
|
|
namespace Bit.iOS.Autofill
|
|
{
|
|
public partial class CredentialProviderViewController : ASCredentialProviderViewController
|
|
{
|
|
public CredentialProviderViewController (IntPtr handle) : base (handle)
|
|
{
|
|
}
|
|
|
|
public override void ViewDidLoad()
|
|
{
|
|
System.Diagnostics.Debug.WriteLine("AUTOFILL view did load");
|
|
base.ViewDidLoad();
|
|
}
|
|
|
|
public override void PrepareCredentialList(ASCredentialServiceIdentifier[] serviceIdentifiers)
|
|
{
|
|
System.Diagnostics.Debug.WriteLine("AUTOFILL Got identifiers " + serviceIdentifiers.Length);
|
|
base.PrepareCredentialList(serviceIdentifiers);
|
|
}
|
|
|
|
public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity)
|
|
{
|
|
base.ProvideCredentialWithoutUserInteraction(credentialIdentity);
|
|
}
|
|
|
|
public override void PrepareInterfaceToProvideCredential(ASPasswordCredentialIdentity credentialIdentity)
|
|
{
|
|
base.PrepareInterfaceToProvideCredential(credentialIdentity);
|
|
}
|
|
|
|
public override void PrepareInterfaceForExtensionConfiguration()
|
|
{
|
|
base.PrepareInterfaceForExtensionConfiguration();
|
|
}
|
|
}
|
|
} |