Show / Hide Table of Contents

Class ForwardOption

This is the input which bots can specify to forward the incoming call to a list of participants.

Inheritance
System.Object
AnswerOption
ForwardOption
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Microsoft.Bot.Builder.Enterprise.Core
Assembly: Microsoft.Bot.Builder.Enterprise.dll
Syntax
public class ForwardOption : AnswerOption

Constructors

View Source

ForwardOption(IEnumerable<Participant>, Nullable<UInt32>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ForwardOption class

Declaration
public ForwardOption(IEnumerable<Participant> targets, uint ? ringTimeoutInSecond, bool ? maskCaller, bool ? maskCallee)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<Participant> targets

Indicates the list of targets that this call is forwarded to.

System.Nullable<System.UInt32> ringTimeoutInSecond

Indicates the timeout value for ringing the targets. Default is 60 seconds.

System.Nullable<System.Boolean> maskCaller

Whether to mask out caller. If true, callee will see the caller as bot's identity. Default false.

System.Nullable<System.Boolean> maskCallee

Whether to mask out callee. If true, caller will see the callee as bot's identity. Default false.

  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX