ArcGISRuntimeXamarin.Managers.SampleManager.GetMetadataManifest C# (CSharp) 메소드

GetMetadataManifest() 공개 메소드

Returns a Stream based on the individual sample metadata.json file.
public GetMetadataManifest ( string path ) : Stream
path string String path to the metadata file.
리턴 Stream
        public Stream GetMetadataManifest(string path)
        {
            var metadataPath = GetType().Assembly.GetManifestResourceStream("ArcGISRuntimeXamarin." + path + ".metadata.json");

            return metadataPath;
        }