Show / Hide Table of Contents

Class TextPrompt

The type TextPrompt.

Inheritance
System.Object
Prompt
TextPrompt
Inherited Members
Prompt.AdditionalData
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public class TextPrompt : Prompt

Properties

View Source

Culture

Gets or sets culture.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "culture", Required = Required.Default)]
public Culture? Culture { get; set; }
Property Value
Type Description
System.Nullable<Culture>
View Source

Emphasize

Gets or sets emphasize.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "emphasize", Required = Required.Default)]
public bool? Emphasize { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

Loop

Gets or sets loop.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "loop", Required = Required.Default)]
public int? Loop { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

SayAs

Gets or sets sayAs.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "sayAs", Required = Required.Default)]
public SayAs? SayAs { get; set; }
Property Value
Type Description
System.Nullable<SayAs>
View Source

Text

Gets or sets text.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "text", Required = Required.Default)]
public string Text { get; set; }
Property Value
Type Description
System.String
View Source

VoiceGender

Gets or sets voiceGender.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "voiceGender", Required = Required.Default)]
public VoiceGender? VoiceGender { get; set; }
Property Value
Type Description
System.Nullable<VoiceGender>
  • View Source
Back to top Generated by DocFX