CaptureResult.Key.Name Property
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.
Return a camelCase, period separated name formatted like:
"root.section[.subsections].name"
.
public string Name { [Android.Runtime.Register("getName", "()Ljava/lang/String;", "")] get; }
[<get: Android.Runtime.Register("getName", "()Ljava/lang/String;", "")>]
member this.Name : string
Property Value
String representation of the key name
- Attributes
Remarks
Return a camelCase, period separated name formatted like: "root.section[.subsections].name"
.
Built-in keys exposed by the Android SDK are always prefixed with "android."
; keys that are device/platform-specific are prefixed with "com."
.
For example, CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP
would have a name of "android.scaler.streamConfigurationMap"
; whereas a device specific key might look like "com.google.nexus.data.private"
.
Java documentation for android.hardware.camera2.CaptureResult.Key.getName()
.
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.