C# Class Yodiwo.SecureString

Dummy re-implementation of SecureString for compatibility/portability purposes
Inheritance: IDisposable
Mostrar archivo Open project: yodiwo/plegma

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

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