XmlSerializedDescriptorInfo(XElement, Type) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an instance of an XmlSerializedDescriptorInfo.
public:
XmlSerializedDescriptorInfo(System::Xml::Linq::XElement ^ serializedDescriptorElement, Type ^ deserializerType);
public XmlSerializedDescriptorInfo (System.Xml.Linq.XElement serializedDescriptorElement, Type deserializerType);
new Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.XmlSerializedDescriptorInfo : System.Xml.Linq.XElement * Type -> Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.XmlSerializedDescriptorInfo
Public Sub New (serializedDescriptorElement As XElement, deserializerType As Type)
Parameters
- serializedDescriptorElement
- XElement
The XML-serialized form of the IAuthenticatedEncryptorDescriptor.
- deserializerType
- Type
The class whose ImportFromXml(XElement)
method can be used to deserialize serializedDescriptorElement
.