AlgorithmParameters.GetParameterSpec(Class) Method
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.
Returns a (transparent) specification of this parameter object.
[Android.Runtime.Register("getParameterSpec", "(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;", "")]
[Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.security.spec.AlgorithmParameterSpec" })]
public Java.Lang.Object? GetParameterSpec (Java.Lang.Class? paramSpec);
[<Android.Runtime.Register("getParameterSpec", "(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;", "")>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.security.spec.AlgorithmParameterSpec" })>]
member this.GetParameterSpec : Java.Lang.Class -> Java.Lang.Object
Parameters
- paramSpec
- Class
the specification class in which the parameters should be returned.
Returns
the parameter specification.
- Attributes
Remarks
Returns a (transparent) specification of this parameter object. paramSpec
identifies the specification class in which the parameters should be returned. It could, for example, be DSAParameterSpec.class
, to indicate that the parameters should be returned in an instance of the DSAParameterSpec
class.
Java documentation for java.security.AlgorithmParameters.getParameterSpec(java.lang.Class<T>)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.