mirror of
https://github.com/status-im/react-native-securerandom.git
synced 2026-08-31 15:11:07 +00:00
34 lines
722 B
C#
34 lines
722 B
C#
using ReactNative.Bridge;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Windows.ApplicationModel.Core;
|
|
using Windows.UI.Core;
|
|
|
|
namespace Net.Rhogan.RNSecureRandom
|
|
{
|
|
/// <summary>
|
|
/// A module that allows JS to share data.
|
|
/// </summary>
|
|
class RNSecureRandomModule : NativeModuleBase
|
|
{
|
|
/// <summary>
|
|
/// Instantiates the <see cref="RNSecureRandomModule"/>.
|
|
/// </summary>
|
|
internal RNSecureRandomModule()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// The name of the native module.
|
|
/// </summary>
|
|
public override string Name
|
|
{
|
|
get
|
|
{
|
|
return "RNSecureRandom";
|
|
}
|
|
}
|
|
}
|
|
}
|