EncryptedData Class

 

Represents the <EncryptedData> element in XML encryption. This class cannot be inherited.

Namespace:   System.Security.Cryptography.Xml
Assembly:  System.Security (in System.Security.dll)

System::Object
  System.Security.Cryptography.Xml::EncryptedType
    System.Security.Cryptography.Xml::EncryptedData

[HostProtectionAttribute(SecurityAction::LinkDemand, MayLeakOnAbort = true)]
public ref class EncryptedData sealed : EncryptedType

NameDescription
System_CAPS_pubmethodEncryptedData()

Initializes a new instance of the EncryptedData class.

NameDescription
System_CAPS_pubpropertyCipherData

Gets or sets the CipherData value for an instance of an EncryptedType class.(Inherited from EncryptedType.)

System_CAPS_pubpropertyEncoding

Gets or sets the Encoding attribute of an EncryptedType instance in XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubpropertyEncryptionMethod

Gets or sets the <EncryptionMethod> element for XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubpropertyEncryptionProperties

Gets or sets the <EncryptionProperties> element in XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubpropertyId

Gets or sets the Id attribute of an EncryptedType instance in XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubpropertyKeyInfo

Gets of sets the <KeyInfo> element in XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubpropertyMimeType

Gets or sets the MimeType attribute of an EncryptedType instance in XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubpropertyType

Gets or sets the Type attribute of an EncryptedType instance in XML encryption.(Inherited from EncryptedType.)

NameDescription
System_CAPS_pubmethodAddProperty(EncryptionProperty^)

Adds an <EncryptionProperty> child element to the <EncryptedProperties> element in the current EncryptedType object in XML encryption.(Inherited from EncryptedType.)

System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodGetXml()

Returns the XML representation of the EncryptedData object.(Overrides EncryptedType::GetXml().)

System_CAPS_pubmethodLoadXml(XmlElement^)

Loads XML information into the <EncryptedData> element in XML encryption.(Overrides EncryptedType::LoadXml(XmlElement^).)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

This class is used to represent the <EncryptedData> element in XML encryption. This element is the core element in XML encryption. Its child element, <CipherData>, contains encrypted data. The <EncryptedData> element replaces an encrypted element or serves as the new document root.

The following example demonstrates how to encrypt and decrypt an XML element by using the EncryptedData class. This example then displays various properties of the EncryptedData class to the console.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: