# sampleBlockCount

> Number of time Begin/End pairs was called during the previous frame. (Read Only)

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.Profiling](/engine/6000.6/script-reference/unityengine/profiling.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public int sampleBlockCount { get; }
```

### Remarks

The counter represents the number of complete or running profiling block during previous frame.

### Examples

```csharp
using UnityEngine;
using UnityEngine.Profiling;

public class ExampleClass : MonoBehaviour
{
    Recorder materialSetPass;
    void Start()
    {
        materialSetPass = Recorder.Get("Material.SetPassFast");
        materialSetPass.enabled = true;
    }

    void Update()
    {
        if (materialSetPass.isValid)
            Debug.Log("Material SetPass count: " + materialSetPass.sampleBlockCount);
    }
}
```
