11 references to LoadState
dotnet-svcutil-lib (11)
Metadata\MetadataDocumentLoader.cs (8)
75public LoadState State { get; set; } 169case LoadState.NotStarted: 170this.State = LoadState.Started; 172case LoadState.Started: 173case LoadState.Failed: 175case LoadState.Successful: 201this.State = LoadState.Successful; 205this.State = LoadState.Failed;
Metadata\ServiceDescriptor.cs (3)
75public bool MetadataImported { get { return this.metadataDocumentLoader.State == MetadataDocumentLoader.LoadState.Successful; } } 95if (this.metadataDocumentLoader.State == MetadataDocumentLoader.LoadState.Successful) 139this.metadataDocumentLoader.State = MetadataDocumentLoader.LoadState.Successful;