Show / Hide Table of Contents

Class WriteOptions

Options for write operations.

Inheritance
System.Object
WriteOptions
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: Grpc.Core
Assembly: Grpc.Core.Api.dll
Syntax
public class WriteOptions

Constructors

WriteOptions(WriteFlags)

Initializes a new instance of WriteOptions class.

Declaration
public WriteOptions(WriteFlags flags = (WriteFlags)0)
Parameters
Type Name Description
WriteFlags flags

The write flags.

Fields

Default

Default write options.

Declaration
public static readonly WriteOptions Default
Field Value
Type Description
WriteOptions

Properties

Flags

Gets the write flags.

Declaration
public WriteFlags Flags { get; }
Property Value
Type Description
WriteFlags
Back to top