Files
speckle-sharp-host-apis/Speckle.Rhino7.Fakes/generated/Rhino.FileIO.FileReference.s.cs
T
Adam Hathcock fb415d0416
.NET Build and Publish / build (push) Has been cancelled
Fix rhino7 fileio (#34)
* fix issue with basetype being null

* add Rhino.FileIO properly

* update csharpier
2024-10-10 10:13:02 +01:00

45 lines
1.3 KiB
C#

namespace Rhino.FileIO;
public partial class FileReference : System.IDisposable
{
public FileReference() { }
public FileReference(
System.String fullPath,
System.String relativePath,
Rhino.FileIO.ContentHash hash,
Rhino.FileIO.FileReferenceStatus status
) => throw new System.NotImplementedException();
public static Rhino.FileIO.FileReference CreateFromFullPath(System.String fullPath) =>
throw new System.NotImplementedException();
public static Rhino.FileIO.FileReference CreateFromFullAndRelativePaths(
System.String fullPath,
System.String relativePath
) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.String FullPath
{
get => throw new System.NotImplementedException();
}
public virtual System.String RelativePath
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.FileIO.ContentHash ContentHash
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.FileIO.FileReferenceStatus FullPathStatus
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean IsSet
{
get => throw new System.NotImplementedException();
}
}