DeserializeFromRaw Method
See Also 
SourceCode.Security.Cryptography Namespace > CryptoFactory Class : DeserializeFromRaw Method



bytes

Glossary Item Box

Syntax

Visual Basic (Declaration)  
<ExtensionAttribute()>
<ObsoleteAttribute(Message="Security: Deprecated. Use DeserializeCharsFromRaw() instead", IsError=True)>
Public Shared Function DeserializeFromRaw( _
   ByVal bytes() As Byte _
) As String
Visual Basic (Usage) Copy Code
Dim bytes() As Byte
Dim value As String
 
value = CryptoFactory.DeserializeFromRaw(bytes)
C#  
[Extension()]
[Obsolete(Message="Security: Deprecated. Use DeserializeCharsFromRaw() instead", IsError=true)]
public static string DeserializeFromRaw( 
   byte[] bytes
)
C++/CLI  
[Extension()]
[Obsolete(Message="Security: Deprecated. Use DeserializeCharsFromRaw() instead", IsError=true)]
public:
static String^ DeserializeFromRaw( 
   array<byte>^ bytes
) 

Parameters

bytes

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also