5 references to BinaryData
AzureContainerApps.ApiService (1)
Program.cs (1)
45await container.UploadBlobAsync(blobNameAndContent, new BinaryData(blobNameAndContent));
AzureStorageEndToEnd.ApiService (1)
Program.cs (1)
23await container.UploadBlobAsync(blobNameAndContent, new BinaryData(blobNameAndContent));
CdkSample.ApiService (1)
Program.cs (1)
93await container.UploadBlobAsync(blobNameAndContent, new BinaryData(blobNameAndContent));
System.Memory.Data (2)
System\BinaryData.cs (2)
158public BinaryData(string data, string? mediaType) : this(data) 208public static BinaryData FromString(string data) => new BinaryData(data);