Show / Hide Table of Contents

Class TeardownTag

Represents a tag that fires after another tag in order to tear down dependencies.

Inheritance
System.Object
TeardownTag
Implements
IDirectResponseSchema
Inherited Members
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: Google.Apis.TagManager.v2.Data
Assembly: Google.Apis.TagManager.v2.dll
Syntax
public class TeardownTag : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

StopTeardownOnFailure

If true, fire the teardown tag if and only if the main tag fires successfully. If false, fire the teardown tag regardless of main tag firing status.

Declaration
[JsonProperty("stopTeardownOnFailure")]
public virtual bool? StopTeardownOnFailure { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

TagName

The name of the teardown tag.

Declaration
[JsonProperty("tagName")]
public virtual string TagName { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top