C# Class System.Security.SecureString

Inheritance: System.Runtime.ConstrainedExecution.CriticalFinalizerObject, IDisposable
Show file Open project: runefs/Marvin Class Usage Examples

Public Methods

Method Description
AppendChar ( char c ) : void
Clear ( ) : void
Copy ( ) : SecureString
Dispose ( ) : void
InsertAt ( int index, char c ) : void
IsReadOnly ( ) : bool
MakeReadOnly ( ) : void
RemoveAt ( int index ) : void
SetAt ( int index, char c ) : void

Private Methods

Method Description
Alloc ( int length, bool realloc ) : void
Decrypt ( ) : void
Encrypt ( ) : void
GetBuffer ( ) : byte[]
SecureString ( ) : System.Globalization
SecureString ( char value, int length ) : System.Globalization

Method Details

AppendChar() public method

public AppendChar ( char c ) : void
c char
return void

Clear() public method

public Clear ( ) : void
return void

Copy() public method

public Copy ( ) : SecureString
return SecureString

Dispose() public method

public Dispose ( ) : void
return void

InsertAt() public method

public InsertAt ( int index, char c ) : void
index int
c char
return void

IsReadOnly() public method

public IsReadOnly ( ) : bool
return bool

MakeReadOnly() public method

public MakeReadOnly ( ) : void
return void

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void

SetAt() public method

public SetAt ( int index, char c ) : void
index int
c char
return void