Exemplo n.º 1
0
    public Topic CreateTopicWithSchema(string topicId, string schemaId, Encoding encoding)
    {
        var createTopicWithSchemaSampleObject = new CreateTopicWithSchemaSample();
        var topic = createTopicWithSchemaSampleObject.CreateTopicWithSchema(ProjectId, topicId, schemaId, encoding);

        TempTopicIds.Add(topicId);
        return(topic);
    }
 public CreateTopicWithSchemaTest(PubsubFixture pubsubFixture)
 {
     _pubsubFixture = pubsubFixture;
     _createTopicWithSchemaSample = new CreateTopicWithSchemaSample();
 }